3

第一部分已由 Eric 在下面的评论解决,但导致了我在水平规则之后描述的次要问题。谢谢埃里克!

我正在尝试将作为模板类的函子传递给 boost thread_group 类的 create_thread 方法以及函子的两个参数。但是我似乎无法超越我当前的编译错误。使用以下代码:

#include <boost/lambda/lambda.hpp>
#include <boost/lambda/bind.hpp>
#include <boost/thread.hpp>
#include <vector>

using namespace boost::lambda;
using namespace std;

namespace bl = boost::lambda;

template<typename ftor, typename data>
class Foo
{
public:
    explicit Foo()
    {
    }
    void doFtor ()
    {
        _threads.create_thread(bind(&Foo<ftor, data>::_ftor, _list.begin(), _list.end()));
        //_threads.create_thread(bind(_ftor, _list.begin(), _list.end()));
        _threads.join_all();
    }

private:
    boost::thread_group _threads;
    ftor _ftor;
    vector<data> _list;
};

template<typename data>
class Ftor
{
public:
    //template <class Args> struct sig { typedef void type; }

    explicit Ftor () {}

    void operator() (typename vector<data>::iterator &startItr, typename vector<data>::iterator &endItr)
    {
        for_each(startItr, endItr, cout << bl::_1 << constant("."));
    }
}

我还尝试了 typedef-ing 'type' 因为我认为我的问题可能与 Sig 模板有关,因为函子本身是模板化的。

我得到的错误是:

error: no matching function for call to ‘boost::lambda::function_adaptor<Ftor<int> Foo<Ftor<int>, int>::*>::apply(Ftor<int> Foo<Ftor<int>, int>::* const&, const __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int>> >&, const __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >&)’

事先有一堆序言。

提前感谢您的帮助!


好的,我已经修改了以下 Eric 建议的代码,生成了以下代码:

#include <boost/lambda/lambda.hpp>
#include <boost/lambda/bind.hpp>
#include <boost/thread.hpp>
#include <vector>

using namespace boost::lambda;
using namespace std;

namespace bl = boost::lambda;

template<typename ftor, typename data>
class Foo
{
public:
    explicit Foo()
    {
    }
    void doFtor ()
    {
        _threads.create_thread(bl::bind(boost::ref(_ftor), _list.begin(), _list.end()));
        _threads.join_all();
    }

private:
    boost::thread_group _threads;
    ftor _ftor;
    vector<data> _list;
};

template<typename data>
class Ftor
{
public:
    typedef void result_type;

    explicit Ftor () {}

    result_type operator() (typename vector<data>::iterator &startItr, typename vector<data>::iterator &endItr)
    {
        for_each(startItr, endItr, cout << bl::_1 << constant("."));
        return ;
    }
};

但是,这会导致另一个编译错误:

/usr/local/include/boost/lambda/detail/function_adaptors.hpp:45: error: no match for call to ‘(Ftor<int>) (const __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >&, const __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >&)’
ftor.h:41: note: candidates are: void Ftor<data>::operator()(typename std::vector<data, std::allocator<_CharT> >::iterator&, typename std::vector<data, std::allocator<_CharT> >::iterator&) [with data = int]
/usr/local/include/boost/lambda/detail/function_adaptors.hpp:45: error: return-statement with a value, in function returning 'void'

似乎已将 void 定义为 result_type 它现在期望 operator() 返回一些东西。我尝试从函数中返回 result_type ,但这也产生了错误。有任何想法吗?

4

1 回答 1

0

Sig(或者在你的情况下,简直typedef void result_type;是必要的。

IIRC,lambda::bind 对其参数进行 const 副本。

因此,具有非常量 operator() 的函子存在问题。这可以通过使 Ftor::operator()const通过包装(在 doFtor() 中)、_ftor 和 boost::ref 来解决

迭代器也有类似的问题。在这里包装 boost::ref 不会直接起作用,因为它最终会使用对临时的引用。更简单的解决方案是修改 Ftor::operator() 以通过副本获取其参数。

因此,最简单的方法是修改 Ftor,使其 operator() 为 const ,并通过副本获取其参数:

void operator() (typename vector<data>::iterator startItr, typename vector<data>::iterator endItr)const

如果你真的不能让 Ftor::operator() 为 const,你可以修改 doFtor() 如下(但仍然需要让 Ftor::operator() 复制它的参数):

_threads.create_thread(bind(boost::ref(_ftor), _list.begin(), _list.end()));
于 2010-02-26T19:09:44.243 回答