错误 C2664:无法将参数 1 从“int”转换为到“int (__cdecl *)(int)”
将一个函数作为另一个函数的参数传递时遇到一些问题...
错误:错误 1 错误 C2664:“包装器” : 无法将参数 1 转换为 'int' 到 'int (__cdecl *)(int)'
int inc( int n )
{
return n + 1 ;
}
int dec( int n )
{
return n - 1 ;
}
int wrapper( int i, int func(int) )
{
return func( i ) ;
}
int main(){
int a = 0 ;
a = wrapper( 3, inc( 3 ) ) ;
return 0 ;
}
having some trouble passing a function as a parameter of another function...
ERROR: Error 1 error C2664: 'wrapper'
: cannot convert parameter 1 from
'int' to 'int (__cdecl *)(int)'
int inc( int n )
{
return n + 1 ;
}
int dec( int n )
{
return n - 1 ;
}
int wrapper( int i, int func(int) )
{
return func( i ) ;
}
int main(){
int a = 0 ;
a = wrapper( 3, inc( 3 ) ) ;
return 0 ;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您将函数调用
inc(3)
的结果传递给wrapper
,而不是预期的函数指针。a = 包装器(3, &inc) ;
You're passing the result of a function call
inc(3)
towrapper
, NOT a function pointer as it expects.a = wrapper(3, &inc) ;
您的调用正在传递一个整数,即调用
inc(3)
的返回值,即 4。这不是函数指针。
也许您的意思是:
这可行,并将 a 分配给使用参数
3
调用int
的值。Your call is passing an integer, the return value from calling
inc(3)
, i.e. 4.That is not a function pointer.
Perhaps you meant:
This would work, and assign a to the value of calling
int
with the parameter3
.该行:
有效:
我认为您的意思是:
这将指向 inc() 函数的指针作为包装器()的第二个参数传递。
The line:
is effectively:
I think you mean:
This passes a pointer to the inc() function as the second argument to wrapper().
现在,
wrapper
接受一个int
和一个指向函数的指针,该函数接受一个int
并返回一个int
>。您试图向它传递一个 int 和一个 int,因为您不是传递指向函数的指针,而是调用函数并传递返回值(一个int
)。为了让您的代码按照(我认为)您期望的方式工作,请将您对wrapper
的调用更改为:As it is now,
wrapper
takes anint
and a pointer to a function that takes oneint
and returns anint
. You are trying to pass it an int and an int, because instead of passing the a pointer to the function, you're calling the function and passing the return value (anint
). To get your code to work as (I think) you expect, change your call towrapper
to this:我的程序中出现此错误:
因为我写的方法定义晚于 main 方法。
当我剪切主要方法并将其粘贴到函数定义之后时,错误被消除。
i had this error in my program:
because i had wrote the method definition later than main method.
when i cut the main method and paste it later than definition of function, the error removed.