我尝试在Macro中获取每个参数值,如下所示
#include <iostream>
#include <stdio.h>
#include <tuple>
using namespace std;
class T {
public:
string a;
string b;
};
#define CONFIG_FUNCTION(...) int SetValue(T t){\
int arg_len = tuple_size<decltype(make_tuple(__VA_ARGS__))>::value;\
auto t = make_tuple(__VA_ARGS__);\
int i = 0;\
cout << arg_len << endl;\
while (i < arg_len) {\
// I need to get every value of __VA_ARGS__
// t.a = "assigntment"
}\
cout << get<1>(t) << endl;\
}
CONFIG_FUNCTION("a", "b", "c", "d", "e");
int main()
{
T t;
SetValue(t);
return 0;
}
参数的数量(“a”,“b”,“c”,“d”,“e”)是可变的,我如何遍历该值。
答案 0 :(得分:0)
参数的数量(&#34; a&#34;,&#34; b&#34;,&#34; c&#34;,&#34; d&#34;,&#34; e&# 34;)是可变的,我如何遍历该值。
似乎使用std::tuple
(或封装它的宏)是这样做的错误方法(无论你想要做什么)。
如果您使用相同类型的参数数量未知,则可以使用适当的std::vector
和std::initializer_list
,例如
std::vector<std::string> v1{"a", "b", "c", "d", "e"};
for(auto s : v1) {
// Handle every value contained in v1
}
std::vector<std::string> v2{"a", "b", "c", "d", "e", "f", "g"};
for(auto s : v2) {
// Handle every value contained in v2
}
答案 1 :(得分:0)
为什么在使用可变参数模板时使用可变参数宏?
template<typename... Args>
int setValueImpl(Args... args){
constexpr auto arg_len = sizeof...(Args);
std::cout << arg_len << std::endl;
int unpack[] = {(static_cast<void>([](auto value){
// value is equal to each arguments in args
}(args)), 0)..., 0};
static_cast<void>(unpack);
}
然后,如果你真的想要使用宏,你可以这样声明:
#define CONFIG_FUNCTION(...) int setValue(){ return setValueImpl(__VA_ARGS__); }
要详细了解我的unpack
变量的工作原理,请阅读:https://stackoverflow.com/a/25683817/2104697