如何通过成员函数使用Boost绑定


76

以下代码导致cl.exe崩溃(MS VS2005)。
我正在尝试使用boost绑定来创建函数来调用myclass的方法:

#include "stdafx.h"
#include <boost/function.hpp>
#include <boost/bind.hpp>
#include <functional>

class myclass {
public:
    void fun1()       { printf("fun1()\n");      }
    void fun2(int i)  { printf("fun2(%d)\n", i); }

    void testit() {
        boost::function<void ()>    f1( boost::bind( &myclass::fun1, this ) );
        boost::function<void (int)> f2( boost::bind( &myclass::fun2, this ) ); //fails

        f1();
        f2(111);
    }
};

int main(int argc, char* argv[]) {
    myclass mc;
    mc.testit();
    return 0;
}

我究竟做错了什么?

Answers:


105

请改用以下内容:

boost::function<void (int)> f2( boost::bind( &myclass::fun2, this, _1 ) );

这将使用占位符将传递给函数对象的第一个参数转发给函数-您必须告诉Boost.Bind如何处理参数。对于您的表达式,它将尝试将其解释为不带参数的成员函数。
参见例如此处此处了解常用用法。

需要注意的是VC8s CL.EXE经常崩溃的Boost.Bind滥用-如果有疑问,使用测试用例用gcc,你可能会得到很好的提示,如模板参数绑定-internals用,如果你通过输出读取中实例化。


您有什么机会可以帮助此stackoverflow.com/questions/13074756/…吗?相似,但std::function给出了错误
kirill_igum 2012年

谢谢,这有点令人困惑,但是您的回答节省了我的培根!
portforwardpodcast 2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.