最佳答案
如何计算可变参数模板函数的参数个数?
即:
template<typename... T>
void f(const T&... t)
{
int n = number_of_args(t);
...
}
实现上述 number_of_args
的最佳方法是什么?