我有一个像这样的static_loop构造
template <std::size_t n, typename F> void static_loop(F&& f) {
static_assert(n <= 8 && "static loop size should <= 8");
if constexpr (n >= 8)
f(std::integral_constant<size_t, n - 8>());
if constexpr (n >= 7)
f(std::integral_constant<size_t, n - 7>());
if constexpr (n >= 6)
f(std::integral_constant<size_t, n - 6>());
if constexpr (n >= 5)
f(std::integral_constant<size_t, n - 5>());
if constexpr (n >= 4)
f(std::integral_constant<size_t, n - 4>());
if constexpr (n >= 3)
f(std::integral_constant<size_t, n - 3>());
if constexpr (n >= 2)
f(std::integral_constant<size_t, n - 2>());
if constexpr (n >= 1)
f(std::integral_constant<size_t, n - 1>());
}
template <typename T> constexpr size_t tupleSize(T) { return tuple_size_v<T>; }
struct A {
int a;
int b;
void run() {
auto ab = std::make_tuple(std::ref(a), std::ref(b));
static_loop<tupleSize(ab)>([&](auto i) { std::get<i>(ab) = i; });
std::cout << a << " " << b << std::endl;
}
};
但是,它无法遍历上面列出的元组.
解决方法:
意见建议:尝试一下
// .........VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV
static_loop<std::tuple_size_v<decltype(ab)>>([&](auto i) { std::get<i>(ab) = i; });
我的意思是……您不能在常量表达式中使用ab(作为值),因为ab没有定义constexpr.
而且您无法定义constexpr,因为它是使用不是constexpr的std :: ref()初始化的.
但是您对ab作为值来获取其类型的大小并不感兴趣;您只对ab型感兴趣;因此您可以通过decltype(ab).
-编辑-
离题建议.
代替static_loop(),您可以使用基于std :: index_sequence的经典方法(以及模板折叠,从C 17开始可用).
我的意思是…如果您按以下方式定义run_1()函数(使用run_1_helper()帮助器)
template <typename F, typename ... Ts, std::size_t ... Is>
void run_1_helper (F const & f, std::tuple<Ts...> & t, std::index_sequence<Is...> const)
{ (f(std::get<Is>(t), Is), ...); }
template <typename F, typename ... Ts>
void run_1 (F const & f, std::tuple<Ts...> & t)
{ run_1_helper(f, t, std::index_sequence_for<Ts...>{}); }
你可以这样写A
struct A {
int a;
int b;
void run() {
auto ab = std::make_tuple(std::ref(a), std::ref(b));
run_1([](auto & v, auto i){ v = i; }, ab);
std::cout << a << " " << b << std::endl;
}
};
或者,也许更好,只需使用std :: apply(),如下所示
struct A {
int a;
int b;
void run() {
auto ab = std::make_tuple(std::ref(a), std::ref(b));
int i { -1 };
std::apply([&](auto & ... vs){ ((vs = ++i), ...); }, ab);
std::cout << a << " " << b << std::endl;
}
};