C++ - 如何在模板化类之外实现模板化成员函数

发布于 2024-10-15 08:40:58 字数 394 浏览 1 评论 0原文

template<int N>
class myClass
{
    template<typename T>
    void myFunction();
};

template<typename T>
void myClass<int N>::myFunction() {} // doesn't work, nor do many other combinations!

您好,请问

可以实现上述目的吗?我可以在类定义中实现 myFunction 没有问题。如果是的话,语法会是什么? GCC 4.2 告诉我:

缺少“>”终止模板参数列表

感谢您的帮助

template<int N>
class myClass
{
    template<typename T>
    void myFunction();
};

template<typename T>
void myClass<int N>::myFunction() {} // doesn't work, nor do many other combinations!

Hi,

Is it possible to achieve the above? I can implement myFunction in the class definition no problem. If so what would the syntax be? GCC 4.2 tells me:

missing '>' to terminate the template argument list

thanks for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦情居士 2024-10-22 08:40:58

您正在寻找:

template <int N>
template <typename T> 
void myClass<N>::myFunction() {} 

您需要一个用于类模板的 template 和一个用于成员函数模板的模板。

You are looking for:

template <int N>
template <typename T> 
void myClass<N>::myFunction() {} 

You need one template for the class template and one for the member function template.

心舞飞扬 2024-10-22 08:40:58
template<int N> template<typename T>
void myClass<N>::myFunction() {}
template<int N> template<typename T>
void myClass<N>::myFunction() {}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文