码迷,mamicode.com
首页 > 其他好文 > 详细

c函数赋值

时间:2015-05-28 14:08:32      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:c++

#include <iostream>
using namespace std;

void mf()
{
	static i=0;
	cout<<i++;
}
void (*   set_function(  void (*f)() )      )()
{
	f();
	(*f)();
	return f;//分开看,就不晕了
}
void set_function22( void (*f)() )
{
	f();
	(*f)();
    
}

int main(int argc, char const *argv[])
{
	
	typedef void (*fun)();
	fun xiaoff=set_function(mf);
	xiaoff();
	(*xiaoff)();

	void (*fun22)()=set_function(xiaoff);
	fun22();
	(*fun22)();

	set_function22(fun22);
	return 0;
}

c函数赋值

标签:c++

原文地址:http://blog.csdn.net/h1023417614/article/details/46120993

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!