variadic模板中的模板参数推导失败

template argument deduction failed in variadic template

本文关键字:失败 variadic 参数      更新时间:2023-10-16

我正在编写一个函数,它可以将字符串向量的内容注入变量中。以下是它的样子:

#include <iostream>
#include <string>
#include <sstream>
#include <vector>
template <typename T, int N = 0>
void pour2(std::vector<std::string> const& vals, T& val) {
std::stringstream ss; 
ss << vals[N];
ss >> val;
}
template <typename T, typename ...Ts, int N = 0>
void pour2(std::vector<std::string> const& vals, T& val, Ts& ...args) {
std::stringstream ss; 
ss << vals[N];
ss >> val;
pour2<Ts..., N+1>(vals, args...);
}

int main() {
std::vector<std::string> info = {"3", "1.5", "/home/tq/playground/"};
int sz; 
double val;
std::string dir;
pour2(info, sz, val, dir);
std::cout << "size = " << sz << std::endl;
std::cout << "value = " << val << std::endl;
std::cout << "dir = " << dir << std::endl;
return 0;
}

然而,g++-9.2抱怨

test.cpp: In instantiation of ‘void pour2(const std::vector<std::__cxx11::basic_string<char> >&, T&, Ts& ...) [with T = int; Ts = {double, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >}; int N = 0]’:
test.cpp:30:26:   required from here
test.cpp:18:19: error: no matching function for call to ‘pour2<double, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, (0 + 1)>(const std::vector<std::__cxx11::basic_string<char> >&, double&, std::__cxx11::basic_string<char>&)’
18 |  pour2<Ts..., N+1>(vals, args...);
|  ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
test.cpp:7:6: note: candidate: ‘template<class T, int N> void pour2(const std::vector<std::__cxx11::basic_string<char> >&, T&)’
7 | void pour2(std::vector<std::string> const& vals, T& val) {
|      ^~~~~
test.cpp:7:6: note:   template argument deduction/substitution failed:
test.cpp:18:19: error: wrong number of template arguments (3, should be at least 1)
18 |  pour2<Ts..., N+1>(vals, args...);
|  ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
test.cpp:14:6: note: candidate: ‘template<class T, class ... Ts, int N> void pour2(const std::vector<std::__cxx11::basic_string<char> >&, T&, Ts& ...)’
14 | void pour2(std::vector<std::string> const& vals, T& val, Ts& ...args) {
|      ^~~~~
test.cpp:14:6: note:   template argument deduction/substitution failed:

叮当9.0.1说

test.cpp:18:2: error: no matching function for call to 'pour2'
pour2<Ts..., N+1>(vals, args...);
^~~~~~~~~~~~~~~~~
test.cpp:30:2: note: in instantiation of function template specialization 'pour2<int, double, std::__cxx11::basic_string<char> , 0>' requested here
pour2(info, sz, val, dir);
^
test.cpp:14:6: note: candidate template ignored: invalid explicitly-specified argument for template parameter 'Ts'
void pour2(std::vector<std::string> const& vals, T& val, Ts& ...args) {
^
test.cpp:7:6: note: candidate function template not viable: requires 2 arguments, but 3 were provided
void pour2(std::vector<std::string> const& vals, T& val) {
^
1 error generated.

我发现,如果我将非类型模板参数移动为第一个参数,代码可以按预期编译和工作:

template <int N = 0, typename T>
void pour(std::vector<std::string> const& vals, T& val) {
std::stringstream ss; 
ss << vals[N];
ss >> val;
}
template <int N = 0, typename T, typename ...Ts>
void pour(std::vector<std::string> const& vals, T& val, Ts& ...args) {
std::stringstream ss; 
ss << vals[N];
ss >> val;
pour<N+1, Ts...>(vals, args...);
}

我只是想知道,为什么它在第一种情况下不起作用?

如果N出现在参数包之后,则N需要从函数参数中推导出来或具有默认参数,并且N不能由函数参数推导出来。

"在函数模板中,模板参数包可能会出现在列表的早期,前提是以下所有参数都可以从函数参数中推导出来,或者具有默认参数"。-[parameter_pack-cppreference]