错误 C2664:无法将参数 1 从“int”转换为到“int (__cdecl *)(int)”

发布于 2024-11-15 08:02:15 字数 409 浏览 4 评论 0原文

将一个函数作为另一个函数的参数传递时遇到一些问题...

错误:错误 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

心舞飞扬 2024-11-22 08:02:15

您将函数调用 inc(3) 的结果传递给 wrapper,而不是预期的函数指针。

a = 包装器(3, &inc) ;

You're passing the result of a function call inc(3) to wrapper, NOT a function pointer as it expects.

a = wrapper(3, &inc) ;

蒲公英的约定 2024-11-22 08:02:15

您的调用正在传递一个整数,即调用 inc(3) 的返回值,即 4。

这不是函数指针。

也许您的意思是:

a = wrapper(3, inc);

这可行,并将 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:

a = wrapper(3, inc);

This would work, and assign a to the value of calling int with the parameter 3.

沉鱼一梦 2024-11-22 08:02:15

该行:

 a = wrapper(  3, inc( 3 )  ) ;

有效:

a = wrapper(3, 4);

我认为您的意思是:

a = wrapper(3, inc);

这将指向 inc() 函数的指针作为包装器()的第二个参数传递。

The line:

 a = wrapper(  3, inc( 3 )  ) ;

is effectively:

a = wrapper(3, 4);

I think you mean:

a = wrapper(3, inc);

This passes a pointer to the inc() function as the second argument to wrapper().

眼睛会笑 2024-11-22 08:02:15

现在,wrapper 接受一个 int 和一个指向函数的指针,该函数接受一个 int 并返回一个 int >。您试图向它传递一个 int 和一个 int,因为您不是传递指向函数的指针,而是调用函数并传递返回值(一个int)。为了让您的代码按照(我认为)您期望的方式工作,请将您对 wrapper 的调用更改为:

a = wrapper(3, &inc);

As it is now, wrapper takes an int and a pointer to a function that takes one int and returns an int. 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 (an int). To get your code to work as (I think) you expect, change your call to wrapper to this:

a = wrapper(3, &inc);
听风吹 2024-11-22 08:02:15

我的程序中出现此错误:

error C2664: 'glutSpecialFunc' : cannot convert parameter 1 from 'void (__cdecl *)(void)' to 'void (__cdecl *)(int,int,int)'

因为我写的方法定义晚于 main 方法。
当我剪切主要方法并将其粘贴到函数定义之后时,错误被消除。

i had this error in my program:

error C2664: 'glutSpecialFunc' : cannot convert parameter 1 from 'void (__cdecl *)(void)' to 'void (__cdecl *)(int,int,int)'

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文