将绑定函数赋值给std :: function

时间:2012-09-17 15:16:44

标签: c++ templates vector compiler-errors

这不会为我编译:

int i = 1;
std::function<void(std::vector<int>&)> execute = std::bind(append<int>, _1, std::ref(i));

追加有签名的地方:

template<class T>
void append(std::vector<T>& container, const T& valueToAppend)

我做错了很明显吗?

编译错误是:

error C2664: 'void (std::vector<_Ty> &,const T &)' : cannot convert parameter 1 from 'boost::arg<I>' to 'std::vector<_Ty> &'
1>          with
1>          [
1>              _Ty=int,
1>              T=int
1>          ]
1>          and
1>          [
1>              I=1
1>          ]
1>          and
1>          [
1>              _Ty=int
1>          ]

1 个答案:

答案 0 :(得分:4)

你需要

using namespace std::placeholders;