使用函数指针可以灵活调用不同的函数。
使用函数指针必须完成以下步骤:
1. 获取函数的地址
2. 声明一个函数指针
3. 使用函数指针调用函数
例:
#include "stdafx.h"
int estimate1(int x, int y);
int estimate2(int x, int y);
int callEstimate(int (*p_estimate)(int,int), int x, int y);
int main(int argc, char* argv[])
{
int x = 1;
int y = 2;
int ret = callEstimate(estimate1, x, y);
printf("the result of estimate1 = %d/n", ret);
ret = callEstimate(estimate2, x, y);
printf("the result of estimate2 = %d/n", ret);
return 0;
}
int estimate1(int x, int y) {
return x + y;
}
int estimate2(int x, int y) {
return (x + y) * 2;
}
int callEstimate(int (*pf)(int,int), int x, int y) {
return pf (x, y); // 用(*pf)(x, y);也可以
}
数据结果:
the result of estimate1 = 3
the result of estimate2 = 6
PS:为何pf和(*pf)等价呢?一种观点认为由于pf是函数指针,所以*pf是函数;另一种观点认为由于函数名是指向函数的指针,指向函数的指针的行为应于函数名相似,因此应将pf()当做函数名使用。C++为了“不得罪”这两帮人,就做了个“老好人”,这两种方式都是正确的,至少是允许的,尽管在逻辑上它们是冲突的。事实上,容忍逻辑上无法自圆其说的观点正式人类思维活动的特点。