标签: c++ templates methods
与this post 非常相似
如何将模板数组声明为模板化函数中的参数?
像这样的代码:
template <unsigned i> void my_func (char (&a)[i]); //yes, I do need that reference
答案 0 :(得分:5)
只需声明一个额外的模板参数,其中包含相关类型。
template <typename T, unsigned i> void my_func (T (&a)[i]);