函数指针小例

使用函数指针可以灵活调用不同的函数。

使用函数指针必须完成以下步骤:

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++为了“不得罪”这两帮人,就做了个“老好人”,这两种方式都是正确的,至少是允许的,尽管在逻辑上它们是冲突的。事实上,容忍逻辑上无法自圆其说的观点正式人类思维活动的特点。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值