我知道这会sizeof...(Args...)
产生 C++0x 打包模板参数列表中的类型数量,但我想根据其他功能来实现它以进行演示,但它不会编译。
// This is not a solution -- overload ambiguity.
// template <typename... Args> size_t num_args (); // Line 7
// template <>
constexpr size_t num_args ()
{
return 0;
}
template <typename H, typename... T>
constexpr size_t num_args () // Line 16
{
return 1 + num_args <T...> (); // *HERE*
}
int main ()
{
std :: cout << num_args <int, int, int> ();
}
这个错误*HERE*
与
No matching function call to ...
... candidate is template<class H, class ... T> size_t num_args()
即它没有看到首先定义的基本情况。前向声明template<typename...T>num_args();
在重载决议中引入了歧义。
x.cpp:30:45: note: candidates are:
x.cpp:7:36: note: size_t num_args() [with Args = {int, float, char}, size_t = long unsigned int]
x.cpp:16:9: note: size_t num_args() [with H = int, T = {float, char}, size_t = long unsigned int]
我正在使用 gcc 4.6。我怎样才能使这项工作?
谢谢。