C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了c – std :: bind to std :: function?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用这个编译错误
std::vector<std::function<int(int)>> functions;

std::function<int(int,int)> foo = [](int a,int b){};
std::function<int(int)> bar = std::bind(foo,2);

functions.push_BACk(bar);

我得到的错误是:

/usr/include/c++/4.6/functional:1764:40: error: no match for call to '(std::_Bind<std::function<int(int,int)>(int)>) (int)'

有人可以告诉我如何将std :: bind转换成std ::函数

解决方法

std::function<int(int)> bar = std::bind(foo,2,std::placeholders::_1);

大佬总结

以上是大佬教程为你收集整理的c – std :: bind to std :: function?全部内容,希望文章能够帮你解决c – std :: bind to std :: function?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。