在 gcc 上将成员函数指针传递给模板成员函数时出现问题

Posted

技术标签:

【中文标题】在 gcc 上将成员函数指针传递给模板成员函数时出现问题【英文标题】:Having problem passing member function pointers to templatized member function on gcc 【发布时间】:2011-05-12 19:44:22 【问题描述】:

我在将成员函数指针传递给 gcc 上的模板化成员函数时遇到问题。有谁知道如何修改下面的代码以让 gcc 接受我正在尝试做的事情?

class Foo

public:
    template <class C, class R>
    void Execute(R(typename C::*memFn)())
    
    
;

尝试编译代码时出现以下错误:

test.cpp:40: error: 'memFn' was not declared in this scope
test.cpp:40: error: expected primary-expression before '(' token
test.cpp:40: error: expected identifier before '*' token
test.cpp:40: error: expected '(' before '*' token
test.cpp:40: error: 'memFn' was not declared in this scope
test.cpp:40: error: variable or field 'Execute' declared void

我使用的 gcc 版本是 4.4.2。

非常感谢您的帮助!

【问题讨论】:

【参考方案1】:

您不需要typename。删除它,它应该可以工作。 (我在 gcc 4.3.2 上测试过)。

【讨论】:

谢谢。我不知道为什么我最初把它放在那里。当然,MSVS 不在乎。

以上是关于在 gcc 上将成员函数指针传递给模板成员函数时出现问题的主要内容,如果未能解决你的问题,请参考以下文章

将指向外部类模板的成员函数的指针传递给嵌套类

GCC C++14/17 成员函数指针模板参数的区别

传递指向成员函数的指针在 MinGW-w64 中编译,但不在 gcc 中

从通用 lambda 调用 `this` 成员函数 - clang vs gcc

成员结构的值在作为指针传递给函数后丢失

如何将函数指针传递给成员函数c++?