gpt4 book ai didi

c++ - 如何解压在 mixins 主机类中传递的一组元组(最终被转发给 mixins)

转载 作者:行者123 更新时间:2023-11-28 05:30:23 26 4
gpt4 key购买 nike

我有以下代码,可以很好地将各种 std::tuples 转发到我的“BaseSensor”主机类的各种 mixin。

#include <iostream> // std::cout std::endl
#include <string> // std::string
#include <map> // std::map
#include <tuple> // std::map

using namespace std;

struct BaseSensorData
{
BaseSensorData(const string & _sensorName)
: sensorName(_sensorName)
{}

const string sensorName;
};

class TrendSensor //mixin for BaseSensor
{
public:
TrendSensor( BaseSensorData * bsd , std::tuple<size_t , double > && tp)
{
cout << "TrendSensor: " << std::get<0>(tp) << " " << bsd->sensorName << " " << std::get<1>(tp) << endl;
}
};

typedef struct{ double trough; double peak; } Edges;
class EdgeSensor //mixin for BaseSensor
{
public:
EdgeSensor( BaseSensorData * bsd , std::tuple<size_t , double > && tp)
{
cout << "EdgeSensor: " << std::get<0>(tp) << " " << bsd->sensorName << " " << std::get<1>(tp) << endl;
}
};

class CO2Threshold// : public ThresholdData
{
std::map<std::string , double>thresholds;

public:
CO2Threshold( const double & _toxicThres , const double & _zeroThres , const double & )
{
thresholds["toxic"] = _toxicThres;
thresholds["zero"] = _zeroThres;
cout << "CO2Threshold: " << _toxicThres << " " << thresholds["zero"] << endl;
}
};
class O2Threshold// : public ThresholdData
{
std::map<std::string , double>thresholds;

public:
O2Threshold( const double & _toxicThres , const double & _lowThres , const double & _elecChemThres )
{
thresholds["toxic"] = _toxicThres;
thresholds["low"] = _lowThres;
thresholds["elecchem"] = _elecChemThres;
cout << "O2Threshold: " << _toxicThres << " " << thresholds["low"] << " " << thresholds["elecchem"] << endl;
}
};

template<typename ThresholdMixin> //CO2Threshold , O2Threshold , or others ...
class ThresholdSensor : public ThresholdMixin //mixin for BaseSensor
{
public:
ThresholdSensor ( BaseSensorData * bsd
, std::tuple<size_t , double , double , double , double> && tp)
: ThresholdMixin
( std::get<2>(tp)
, std::get<3>(tp)
, std::get<4>(tp)
)
{
cout << "ThresholdSensor: " << std::get<0>(tp) << " " << bsd->sensorName << " "
<< std::get<1>(tp) << " " << std::get<2>(tp) << " " << std::get<3>(tp) << " " << std::get<4>(tp)
<< endl;
}

};

template<typename ... SensorType>
class BaseSensor : public BaseSensorData , public SensorType ... //to my BaseSensor class
{
size_t windowSize;
public:
template<typename ... Args>
BaseSensor(const string& _sensorName , Args && ... args)
: BaseSensorData(_sensorName)
, SensorType( this , std::forward<Args>(args) )...
, windowSize(0U)
{
std::tuple<Args...> arr[sizeof...(SensorType)] = { args ... }; //line A
/*for (size_t i = 0; i < sizeof...(SensorType); ++i)
{
for (size_t i = 0; i < sizeof...(Args); ++i)
{
// do stuff
}
}*/
cout << "BaseSensor: " << /*_windowSize << " " << */sensorName << " " << endl;
}

};

int main() {
BaseSensor<ThresholdSensor<O2Threshold> , TrendSensor, EdgeSensor>bs
{
string("testSensor")
, std::make_tuple<size_t , double , double , double , double>( 54U , 2.5f , 10000.3f , 400.5f , 200.3f )
, std::make_tuple<size_t , double >( 53U , 6.5f )
, std::make_tuple<size_t , double >( 52U , 3.5f )
};

/*BaseSensor<ThresholdSensor<CO2Threshold> , TrendSensor, EdgeSensor>bs5
{
string("testSensor")
, std::make_tuple<size_t , double , double , double , double>( 54U , 2.5f , 10000.3f , 400.5f , 200.3f )
, std::make_tuple<size_t , double >( 53U , 6.5f )
, std::make_tuple<size_t , double >( 52U , 3.5f )
};*/
//BaseSensor<ThresholdSensor<CO2Threshold> > bs2{string("test"),11U , 12.5f};
//BaseSensor<TrendSensor> bs3{string("test"), 8U , 10.5f};
//BaseSensor<EdgeSensor> bs4{string("test"), 6U , 18.5f};

}

所以在“BaseSensor”中,所有混合的元组(即“SensorTypes ...”)通过“Args ...”参数包转发。这工作正常,但我需要在 BaseSensor::BaseSensor() 主体中访问这些元组。然而,这样做的语法让我难以理解。

如何同时扩展 SensorType ...Args ... 并根据元组对“args”进行分类?使用上面的代码,我在 g++ v4.7.1 和启用的 c++11 中得到以下内容:

varcon.cpp:104:64: error: could not convert ‘args#0’ from ‘std::tuple<long unsigned int, double, double, double, double>’ to ‘std::tuple<std::tuple<long unsigned int, double, double, double, double>, std::tuple<long unsigned int, double>, std::tuple<long unsigned int, double> >’
varcon.cpp:104:64: error: could not convert ‘args#1’ from ‘std::tuple<long unsigned int, double>’ to ‘std::tuple<std::tuple<long unsigned int, double, double, double, double>, std::tuple<long unsigned int, double>, std::tuple<long unsigned int, double> >’
varcon.cpp:104:64: error: could not convert ‘args#2’ from ‘std::tuple<long unsigned int, double>’ to ‘std::tuple<std::tuple<long unsigned int, double, double, double, double>, std::tuple<long unsigned int, double>, std::tuple<long unsigned int, double> >’
varcon.cpp:108:59: error: incomplete type ‘std::tuple_size<std::tuple<std::tuple<long unsigned int, double, double, double, double>, std::tuple<long unsigned int, double>, std::tuple<long unsigned int, double> >&>’ used in nested name specifier

最佳答案

您希望通过以下指令获得什么?

std::tuple<Args...> arr[sizeof...(SensorType)] = { args ... };

Args... 包是不同std::tuple 类型的路径;所以你的 arr 是元组的元组数组;所以你必须用一系列元组的元组来喂它。但是 args... pack 它只是一组元组,而不是元组的元组。

所以我的 clang++ 的错误

tmp_002-11,14,gcc,clang.cpp:93:64: error: no viable conversion from
'tuple<unsigned long, double, double, double, double>' to
'tuple<std::tuple<unsigned long, double, double, double, double>,
std::tuple<unsigned long, double>, std::tuple<unsigned long, double>,
(no argument), (no argument)>'

我想你可以扔掉数组部分并将 arr 定义为

std::tuple<Args...> arr { args ... }; 

接下来,如果你想访问单个元素,你可以这样写

std::get<0>(std::get<1>(arr));

第一个 std::get(内部)访问元组(args... 之一)和第二个 std: :get(更外部)访问元组的元素(size_tdouble)。

关于c++ - 如何解压在 mixins 主机类中传递的一组元组(最终被转发给 mixins),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39691314/

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