我正在尝试编译以下内容:
#include <vector>
#include <array>
template <typename T>
void sort(T &container) {}
template <typename F, typename T, typename ...Tail>
void sort_containers(F sort_func, T &container, Tail &...tail) {
sort_func(container);
sort_containers(sort_func, tail...);
}
template <typename F, typename T>
void sort_containers(F sort_func, T &container) {
sort_func(container);
}
int main() {
std::vector<int> x = {1,2,3};
std::vector<double> y = {1.0, 2.0, 3.0};
std::array<char, 3> z = {{'d' , 'b', 'c'}};
sort_containers(sort, x, y, z);
}
这会导致 g++4.8 出现以下编译器错误:
error: no matching function for call to
‘sort_containers(<unresolved overloaded function type>,
std::vector<int>&, std::vector<double>&, std::array<char, 3u>&)’
我知道我需要在将模板参数sort
传递给时指定模板参数sort_containers
,但我不确定在存在可变参数模板函数的情况下这是如何工作的。