C++:如何将模板数组声明为函数参数
与这篇文章非常相似
我怎样才能将模板数组声明为模板函数中的参数?
像这样的代码:
template <unsigned i> void my_func (char (&a)[i]); //yes, I do need that reference
Very similar to this post
How can I declare template array as a parameter in templated function?
Something like this code:
template <unsigned i> void my_func (char (&a)[i]); //yes, I do need that reference
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需声明一个额外的模板参数,其中包含有问题的类型。
Just declare an extra template parameter, which contains the type in question.