我想绑定一个成员来存储类实例之外的函数对象。Howeber,在 VS2012 中,这仅适用于placeholders::_4
,然后它开始弹出错误。以此为例:
#include <iostream>
#include <functional>
using namespace std;
using namespace std::placeholders;
class A
{
public:
int method(int a,int b,int c,int d,int e)
{
return a;
}
};
int main()
{
std::function<int (int,int,int,int,int)> obj;
A a;
// error: no instance of overloaded function "std::bind" matches the argument list
obj = std::bind(&A::method,&a,_1,_2,_3,_4,_5);
std::cout << obj(1,2,3,4,5);
return 0;
}
上面的代码在 GCC 4.7.2 上编译良好,但在 Visual Studio 2012 中导致上述错误。是否有任何解决方法,这是 VC++ 中的错误还是我在这里做一些狡猾的事情?