我看到一篇博客文章使用了非类型可变参数模板(gcc 目前不支持,只有 clang 支持)。
template <class T, size_t... Dimensions>
struct MultiDimArray { /* ... */ };
帖子中的示例编译得很好,但我无法让它与函数模板一起使用。
任何人都可以帮助找出正确的语法(如果存在的话)?
int max(int n) { return n; } // end condition
template <int... N> // replacing int... with typename... works
int max(int n, N... rest) // !! error: unknown type name 'N'
{
int tmp = max(rest...);
return n < tmp? tmp : n;
}
#include <iostream>
int main()
{
std::cout << max(3, 1, 4, 2, 5, 0) << std::endl;
}