在家学习的效率真是惨不忍睹。。
===========================
int* f(int a, int b);返回一个指向int类型的指针。
返回类型 (*函数名)(参数列表);
int max(int a, int b) { return a > b ? a : b; } int min(int a, int b) { return a < b ? a : b; } int (*f)(int, int); // 声明函数指针f,指向返回值类型为int,有两个参数类型都是int的函数 void main() { f = max; // 函数指针f指向求最大值的函数max int c = (*f)(1, 2); printf("The max value is %d \n", c); // 2 f = min; // 函数指针f指向求最小值的函数min c = (*f)(1, 2); printf("The min value is %d \n", c); // 1 return ; }
typedef 返回类型 (*函数指针类型名)(函参列表);
typedef是定义新的类型,定义这种类型为指向某种函数的指针。
int max(int a, int b) { return a > b ? a : b; } int min(int a, int b) { return a < b ? a : b; } //定义Func类型,Func是指向 返回int且参数为2个int的函数 的指针 typedef int (*Func)(int,int); void main() { Func pFunc = NULL; //声明变量pFunc pFunc = &max; //或者pFunc = max两种写法 int c = pFunc(1,2); printf("The max value is %d \n", c); // 2 return ; }
typedef 返回类型 (类名::*函数指针类型名)(函参列表);
typedef 返回类型 (*函数指针类型名)(函参列表);
class A{ public: int max(int a, int b) { return a > b ? a : b; } static int min(int a, int b) { return a < b ? a : b; } }; typedef int (A::*ClassFunc)(int,int);//类成员函数指针定义 typedef int (*StaticFunc)(int,int); //静态函数指针定义(和普通的函数指针相同) void main() { /* * 类成员函数指针 */ ClassFunc pClassFunc = &A::max; //类成员函数必须加&符号,否则报错 //写法1 A a; int c = (a.*pClassFunc)(3,6); cout<<c<<endl; //6 //写法2 A* pA = &a; c = (pA->*pClassFunc)(3,6); cout<<c<<endl; //6 /* * 静态成员函数指针 */ StaticFunc pStaticFucn = &A::min; //可加&,可不加 c = pStaticFucn(3,6); cout<<c<<endl; //3 }
【C++ 基础 11】 函数指针总结,布布扣,bubuko.com
原文地址:http://blog.csdn.net/shun_fzll/article/details/38438867