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

函数指针

时间:2017-03-06 16:28:56      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:成员   end   c++   class   int   指针   ret   类型   str   

1.格式

 /* C */
 void(*fp)(void)=NULL;  // 对应的是 void fun() 类型的函数
 int(*fp)(int)=NULL;    // 对应的是 int fun(int) 类型的函数
/* C++ */
 int(*fp)(int)=NULL;            // 对于静态成员函数(和C一样)
 int(ClassName::*fp)(int)=NULL; //对于普通成员函数要加上类域  

2.示例

typedef int(*fp)(int);  /** C **/

int f(int a)
{
	cout << a << endl;
	return 1;
}
int main()
{

	fp pf = NULL;
	pf = (fp)*(&f);
	cout << pf(2) << endl;
        return 0;
        /*或者不使用typedef
        int(*fp)(int)=NULL;
        pf=f;
        cout<<pf(2)<<endl;
        */
}
class A          /** C++ **/
{
public:
	void fun1(int a){ cout << a << endl; }
	static void fun2(int b){ cout << b << endl; }
};

int main()
{
	A b;

	void(A::*fp)(int) = NULL;  /*对普通成员函数的调用*/
	fp = &A::fun1;
	(b.*fp)(2); // 调用fun1
//-----------------------------+
	void(*pf)(int) = NULL;    /*对静态成员函数的调用,同C一样*/
	pf = b.fun2;
	pf(4); //调用fun2
	
	return 0;
}

  

函数指针

标签:成员   end   c++   class   int   指针   ret   类型   str   

原文地址:http://www.cnblogs.com/whlook/p/6510516.html

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