gpt4 book ai didi

c++ - 将 boost::fusion::for_each 应用于具有可变函数对象的 boost::fusion::vector

转载 作者:搜寻专家 更新时间:2023-10-31 00:16:50 26 4
gpt4 key购买 nike

我正在尝试使用 boost::fusion::vector。但是,我遇到了这个非常简单的问题。

#include <iostream>
#include <string>

#include <boost/fusion/container/vector.hpp>
#include <boost/fusion/algorithm.hpp>

using namespace std;

struct A{
template <class T>
void operator()(const T& t) {
x++;
cout << t << endl;
}

int x = 0;
};

int main(){
A a;
boost::fusion::vector<int, int, int> tuple{3,4,5};
boost::fusion::for_each(tuple, a);
}

请注意,struct Aoperator() 修改struct A 中的x。gcc 4.7.2 警告说 ...\include\boost\fusion\algorithm\iteration\detail\for_each.hpp:77: 错误:将 'const A' 作为 'void A::operator() 的 'this' 参数传递( const T&) [with T = int]' 丢弃限定符 [-fpermissive]

有解决办法吗?

最佳答案

一个更简单、更好的方法是使用 fusion::fold:

#include <iostream>

#include <boost/fusion/algorithm/iteration/fold.hpp>
#include <boost/fusion/include/fold.hpp>

namespace detail {
struct A {
typedef int result_type;
template<typename T1, typename T2>
int operator()( const T1& t1, const T2& t2 ) const {
std::cout << t1 << "," << t2 << std::endl;
return t1 + 1;
}
};
}

int main() {
boost::fusion::vector<int, int, int> tuple{3,4,5};
boost::fusion::fold(tuple, 0, detail::A());
}

如果没有任何语法错误,这应该会产生:

0,3
1,4
2,5

关于c++ - 将 boost::fusion::for_each 应用于具有可变函数对象的 boost::fusion::vector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15079530/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com