C ++:如何将模板数组声明为函数参数

时间:2010-04-26 14:46:44

标签: c++ templates methods

this post 非常相似

如何将模板数组声明为模板化函数中的参数?

像这样的代码:

template <unsigned i> void my_func (char (&a)[i]); //yes, I do need that reference

1 个答案:

答案 0 :(得分:5)

只需声明一个额外的模板参数,其中包含相关类型。

template <typename T, unsigned i>
void my_func (T (&a)[i]);