【问题标题】:boost::fusion::accumulate simple exampleboost::fusion::accumulate 简单示例
【发布时间】:2015-12-18 04:35:12
【问题描述】:

我有一个我希望是一个简单的例子,有一个简单的问题有人可以帮我解决:)。它基于另一个问题: accumulate over tuple of values

我有一个结构,有一个std::tuple<std::string> 成员。在结构的构造过程中,我在执行一些由另一种类型控制的算法后存储数据。与我的问题无关,只是解释下面的代码。

我需要帮助(抱歉,新来促进元编程!)是我的toString() 方法,它在我拥有的元组上调用boost::fusion::accumulate。当我打电话给boost::fusion::accumulate 时,我不确定我应该怎么称呼它! 对boost::fusion::accumulate 的调用应由AlgorithmT 参数决定。

我或多或少有以下代码:

#include <boost/fusion/adapted/std_tuple.hpp>
#include <boost/fusion/include/algorithm.hpp>
#include <boost/phoenix/phoenix.hpp>

template<typename AlgorithmT, typename ...T>
struct Trait
{
  using A = AlgorithmT;

  size_t hash_value_;
  std::tuple<std::string> value_;

  Trait(T... data) :
    hash_value_(A::Hash(data...)),
    value_(A::Transform(data...)) {}
  size_t hash() const { return this->hash_value_; }

  std::string toString() const
  {
    using namespace boost::phoenix::arg_names;
    // This example compiles, but it effectively does nothing. result is always empty.
    std::string const result = boost::fusion::accumulate(this->value_, std::string{}, arg1);

    // This next line doesn't compile, but I think it's what I want.
    std::string const result = boost::fusion::accumulate(this->value_, std::string{}, &A::ToString(arg1));
    return result;
  }
};

struct IdentityAlgorithms
{
  static constexpr size_t (*Hash)(std::string const&) = &boost::hash_value;
  static constexpr auto Transform = &identity_transform<std::string>;

  static std::string ToString(std::string value) {
    std::cerr << "ToString invoked! value: '" << value << "'" << std::endl;
    return "\"" + value + "\""; }
};

有人可以看看我是如何使用boost::fusion::accumulate 的,或许可以指出我如何让​​编译器推断出类型。我假设编译器有充分的理由无法推断出正确的类型,我只是不确定那是什么。 GCC4.9 向我吐出的错误消息是:

这里需要
/local/brazil-pkg-cache/packages/Boost/Boost-3.0.3932.1/RHEL5_64/DEV.STD.PTHREAD/build/include/boost/fusion/algorithm/iteration/detail/preprocessed/fold.hpp:111:39:
错误:函数参数过多
fusion::deref(it0));

【问题讨论】:

    标签: c++ c++11 boost c++14 fusion


    【解决方案1】:
    #include <boost/fusion/adapted/std_tuple.hpp>
    #include <boost/fusion/include/algorithm.hpp>
    #include <boost/phoenix/phoenix.hpp>
    
    template<typename AlgorithmT, typename ...T>
    struct Trait
    {
        using A = AlgorithmT;
    
        size_t hash_value_;
        std::tuple<std::string> value_;
    
        Trait(T... data) :
            hash_value_(A::Hash(data...)),
            value_(A::Transform(data...)) {}
        size_t hash() const { return this->hash_value_; }
    
        std::string toString() const
        {
            using namespace boost::phoenix::arg_names;
    
            const std::string result = boost::fusion::accumulate(this->value_, std::string{} /* initila state */, A());
            return result;
        }
    };
    
    struct IdentityAlgorithms
    {
        typedef std::string result_type;
    
        static constexpr size_t (*Hash)(std::string const&) = &boost::hash_value;
        static constexpr auto Transform = &identity_transform<std::string>;
    
        std::string operator()(const std::string& str, const std::string &value) const
                                              //  ^ state                 ^ element of squence
        {
            std::cerr << "ToString invoked! value: '" << value << "'" << std::endl;
            return "\"" + value + "\"";
        }
    };
    

    在这种情况下,static std::string ToString(std::string value) 操作毫无意义。你必须定义operator()

    【讨论】:

    • 你做了什么?你能解释一下吗?
    • 我需要定义 BOOST_RESULT_OF_USE_DECLTYPE 才能让它工作,谢谢!
    猜你喜欢
    • 1970-01-01
    • 2012-02-28
    • 2017-03-26
    • 2013-08-29
    • 1970-01-01
    • 2014-01-06
    • 1970-01-01
    • 2011-01-21
    • 2023-04-04
    相关资源
    最近更新 更多