4

我一直在尝试了解升压范围适配器的使用,但我发现的所有工作示例仅使用具有原始类型的 STL 容器,std::list<int>并且尝试使用我自己的类会使一切崩溃。

#define BOOST_RESULT_OF_USE_DECLTYPE
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <boost/range/adaptors.hpp>
#include <boost/range/adaptor/transformed.hpp>
#include <boost/range/adaptor/filtered.hpp>
#include <boost/range/algorithm.hpp>

struct Thing
{
  Thing() : _id(0), _name(""){}
  std::size_t _id;
  std::string _name;
};

int main()
{
  std::vector<Thing> input;
  std::vector<Thing> output;
  std::function<Thing (Thing&)> transform( [](Thing& t)->Thing{
    t._name = "changed";
    return t;});

  struct Filter
  {
    typedef bool result_type;
    typedef const Thing& argument_type;
    result_type operator()(const Thing& t)
    {
      return t._id > 1;
    }
  };
  Filter filter;

  boost::copy(input
      | boost::adaptors::filtered(filter)
      | boost::adaptors::transformed(transform)
      | boost::adaptors::reversed,
      output
      );
}

使用 gcc 4.6/4.8 和 boost 1.48/1.54/trunk 我得到以下编译错误:

/usr/include/c++/4.8/bits/stl_algobase.h:382:57: error: no type named ‘value_type’ in ‘struct std::iterator_traits<std::vector<Thing> >’
       typedef typename iterator_traits<_OI>::value_type _ValueTypeO;
                                                         ^
/usr/include/c++/4.8/bits/stl_algobase.h:387:9: error: no type named ‘value_type’ in ‘struct std::iterator_traits<std::vector<Thing> >’
         && __are_same<_ValueTypeI, _ValueTypeO>::__value);

尽管我按照对此的答案进行了定义,但我了解问题decltype以及result_of可能导致问题的问题。但是,我不明白为什么我不能将仿函数结构传递给我的班级,或者我的班级是否有其他要求。transformedBOOST_RESULT_OF_USE_DECLTYPEfilteredThing

4

1 回答 1

3

根据文档,第一个参数copy是范围,第二个参数是迭代器,因此将调用更改为:

boost::copy(input
  | boost::adaptors::filtered(filter)
  | boost::adaptors::transformed(transform)
  | boost::adaptors::reversed,
  std::back_inserter(output)
  );

使其与 g++ 4.8.1 和 boost 1.53.0 一起编译良好。

于 2013-07-07T14:21:18.193 回答