这是一个使用从Johannes Schaub-litb和Luc Danton的答案改编的代码打印元组的简短程序。
#include <iostream>
#include <tuple>
template<int ...>
struct seq { };
template<int N, int ...S>
struct gens : gens<N-1, N-1, S...> { };
template<int ...S>
struct gens<0, S...> {
typedef seq<S...> type;
};
template <int ...S, typename ...T>
void print(const std::tuple<T...> & tup, seq<S...> s) {
int res[] = { (std::cout << std::get<S>(tup) << " ", 0)... };
std::cout << std::endl;
}
int main() {
std::tuple<double, int, char> tup(1.5, 100, 'c');
print(tup, gens<std::tuple_size<decltype(tup)>::value >::type());
return 0;
}
print 的第二个参数将始终是gens<N>::type()
,其中N
是元组的大小。我试图通过提供默认参数来避免打印第二个参数:
template <int ...S, typename ...T>
void print(const std::tuple<T...> & tup, seq<S...> s = gens<std::tuple_size<decltype(tup)>::value >::type()) {
int res[] = { (std::cout << std::get<S>(tup) << " ", 0)... };
std::cout << std::endl;
}
但是,结果是编译器错误:
tmp5.cpp: 在函数'void print(const std::tuple<_Elements ...>&, seq) [with int ...S = {}; T = {double, int, char}]':
tmp5.cpp:23:12: 错误:不完整的类型'std::tuple_size&>' 用于嵌套名称说明符
你知道有什么方法可以在S...
没有第二个参数的情况下提供函数print
吗?