本文介绍了std :: bind和重载函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请参考以下代码段。我想使用 c>
You can also perform the binding with a lambda capture (note that this is binds cl by reference, not by value):
auto a2 = [&](int i) { cl.foobar(i); };
这篇关于std :: bind和重载函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!