在模板化成员函数中使用 std::function 时出现编译错误,以下代码是一个简单示例:
#include <functional>
#include <memory>
using std::function;
using std::bind;
using std::shared_ptr;
class Test {
public:
template <typename T>
void setCallback(function<void (T, int)> cb);
};
template <typename T>
void Test::setCallback(function<void (T, int)> cb)
{
// do nothing
}
class TestA {
public:
void testa(int a, int b) { }
};
int main()
{
TestA testA;
Test test;
test.setCallback(bind(&TestA::testa, &testA, std::placeholders::_1, std::placeholders::_2));
return 0;
}
并带有以下编译错误:
testtemplate.cpp:在函数“int main()”中:
testtemplate.cpp:29:92: 错误: 没有匹配函数调用'Test::setCallback(std::_Bind_helper)(int, int), TestA, const std::_Placeholder<1>&, const std::_Placeholder <2>&>::type)'</p>
testtemplate.cpp:29:92: 注意: 候选是: testtemplate.cpp:10:7: 注意: 模板无效 Test::setCallback(std::function)
testtemplate.cpp:10:7:注意:模板参数扣除/替换失败:
testtemplate.cpp:29:92:注意:'std::_Bind(TestA*, std::_Placeholder<1>, std::_Placeholder<2>)>' 不是从 'std::function' 派生的</p >
我正在使用 C++11 和 g++ 4.7