指针问题(用VC++6.0),请问如何解决

#include<stdio.h>intf1(intx){returnx+1;}intf2(intx){returnx-1;}intsum_square(int(*f)(... #include <stdio.h>
int f1(int x)
{return x+1;
}
int f2(int x)
{return x-1;
}
int sum_square(int (*f)(),int m,int n)
{int k,sum=0;
for(k=m;k<=n;k++)
sum+=(*f)(k)*(*f)(k);
return sum;
}
void main()
{printf("result=%d\n",sum_square(f1,1,2)+sum_square(f2,1,2));
}

--------------------Configuration: 811 - Win32 Debug--------------------
Compiling...
811.cpp
D:\Microsoft+Visual C++6.0简体中文企业版\C语言\811.cpp(11) : error C2197: 'int (__cdecl *)(void)' : too many actual parameters
D:\Microsoft+Visual C++6.0简体中文企业版\C语言\811.cpp(11) : error C2197: 'int (__cdecl *)(void)' : too many actual parameters
D:\Microsoft+Visual C++6.0简体中文企业版\C语言\811.cpp(15) : error C2664: 'sum_square' : cannot convert parameter 1 from 'int (int)' to 'int (__cdecl *)(void)'
None of the functions with this name in scope match the target type
D:\Microsoft+Visual C++6.0简体中文企业版\C语言\811.cpp(15) : error C2664: 'sum_square' : cannot convert parameter 1 from 'int (int)' to 'int (__cdecl *)(void)'
None of the functions with this name in scope match the target type
执行 cl.exe 时出错.

811.obj - 1 error(s), 0 warning(s)
展开
 我来答
真白的纱雾d442c
2009-11-17 · TA获得超过1093个赞
知道小有建树答主
回答量:265
采纳率:0%
帮助的人:539万
展开全部
int (*f)()
这个参数所代表的指针,指向一个不需要参数的函数
但是你在sum_square函数内部使用该函数指针时用的是(*f)(k)
传递了一个不应该有的参数
并且调用sum_square时,传递的函数f1和f2都是需要一个参数int x的
因此出错

按照你的原意,应该把
int sum_square(int (*f)(),int m,int n)
改为
int sum_square(int (*f)(int),int m,int n)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式