简体   繁体   中英

no matching function for call to ‘bind(<unresolved overloaded function type>, const std::_Placeholder<1>&, int*)

#include <functional>

template <typename T>
void TemplateFunc(const int value, T* addr) {
}

void Register(std::function<void(const int)>&& callback) {
  callback(2);
}

int main() {
  int int_value;
  Register(std::bind(&TemplateFunc, std::placeholders::_1, &int_value));
}

I cann't understand why?

detail log:

test.cpp: In function ‘int main()’:
test.cpp:13:70: error: no matching function for call to ‘bind(<unresolved overloaded function type>, const std::_Placeholder<1>&, int*)’
   Register(std::bind(&TemplateFunc, std::placeholders::_1, &int_value));

                                                                      ^
test.cpp:13:70: note: candidates are:
In file included from test.cpp:1:0:
/usr/local/gcc4.8.2/include/c++/4.8.2/functional:1655:5: note: template<class _Func, class ... _BoundArgs> typename std::_Bind_helper<std::__or_<std::is_integral<typename std::decay<_Tp>::type>, std::is_enum<typename std::decay<_Tp>::type> >::value, _Func, _BoundArgs ...>::type std::bind(_Func&&, _BoundArgs&& ...)
     bind(_Func&& __f, _BoundArgs&&... __args)

TemplateFunc不是您需要提供template参数的函数名称:

Register(std::bind(&TemplateFunc<int>, std::placeholders::_1, &int_value));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM