15

考虑以下示例。

#include <iostream>
#include <algorithm>
#include <vector>

#include <boost/bind.hpp>

void
func(int e, int x) {
    std::cerr << "x is " << x << std::endl;
    std::cerr << "e is " << e << std::endl;
}

struct foo {
    std::vector<int> v;

    void calc(int x) {
        std::for_each(v.begin(), v.end(),
            boost::bind(func, _1, x));
    }

    void func2(int e, int x) {
        std::cerr << "x is " << x << std::endl;
        std::cerr << "e is " << e << std::endl;
    }

};

int
main()
{
    foo f;

    f.v.push_back(1);
    f.v.push_back(2);
    f.v.push_back(3);
    f.v.push_back(4);

    f.calc(1);

    return 0;
}

如果我使用func()函数,一切正常。但在现实生活中的应用程序中,我必须使用类成员函数,即foo::func2()在这个例子中。如何使用 boost::bind 做到这一点?

4

2 回答 2

18

你真的,真的很亲近:

void calc(int x) {
    std::for_each(v.begin(), v.end(),
        boost::bind(&foo::func2, this, _1, x));
}

编辑:哎呀,我也是。呵呵。

尽管经过反思,您的第一个工作示例并没有什么问题。你应该尽可能地支持自由函数而不是成员函数——你可以看到你的版本变得更加简单。

于 2009-06-15T10:10:21.640 回答
1

在使用 boost::bind 绑定类成员函数时,第二个参数必须提供对象上下文。因此,当第二个参数为时,您的代码将起作用this

于 2011-05-23T19:24:53.337 回答