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

如何使用指向函数的指针

时间:2014-08-09 18:12:38      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   使用   io   strong   2014   art   

在使用指向函数的指针调用函数时,可以使用两种形式:

定义:int (*fun)(int a,int b);

赋值:fun = fun1;

调用:fun(a,b);或者(*fun)(a,b);均可。

下面是测试程序:(Visual Studio 2013)

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int add(int x, int y)
{
	return x + y;
}

int minus(int x, int y)
{
	return x - y;
}

int compute(int x, int y, int(*f)(int x, int y))
{
	//return f(x, y);
	return (*f)(x, y);
	//使用上述两种情况均可。
}

int main()
{
	int x, y;
	char z;
	int n;
	while (1)
	{
		printf("input:");
		scanf("%d%c%d", &x, &z, &y);
		switch (z)
		{
		case ‘+‘:
			n = compute(x, y, add);
			break;
		case ‘-‘:
			n = compute(x, y, minus);
			break;
		default:
			break;
		}
		printf("%d\n", n);
	}
	return 0;
}

测试结果:

bubuko.com,布布扣

如何使用指向函数的指针,布布扣,bubuko.com

如何使用指向函数的指针

标签:style   blog   http   使用   io   strong   2014   art   

原文地址:http://www.cnblogs.com/Camilo/p/3901148.html

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