标签:style blog class color int http
函数指针
1. 函数与函数指针类型要匹配;
2. 函数指针用来保存函数首地址,即可以通过该指针访问函数;
3. 函数指针可以指向一类函数,而不是一个函数,即可以重新赋值。
int maxNumber(int a, int b)
{
return a > b? a: b;
}
void fileFunc(){ cout<<"fileFunc"<<endl; }
void editFunc(){ cout<<"editFunc"<<endl; }
int (*intFunc)(int a, int b);
intFunc = maxNumber;
cout<<intFunc(3, 2)<<endl;
void (*voidFunc)();
voidFunc = fileFunc;
voidFunc();
voidFunc = editFunc;
voidFunc();
参考链接:http://www.cnblogs.com/anwcq/p/C_zhizhenhanshu.html
看书小记5(《C专家编程》),布布扣,bubuko.com
看书小记5(《C专家编程》)
标签:style blog class color int http
原文地址:http://blog.csdn.net/pandawuwyj/article/details/24852355