gpt4 book ai didi

c++ - 如何在类声明之外定义嵌套模板类的方法?

转载 作者:行者123 更新时间:2023-11-30 02:04:04 25 4
gpt4 key购买 nike

如何在类声明之外定义func,低于class A{...};

template<typename T>
class A
{
template<typename Q>
class B
{
static void func(const A<T>& a){} // How do I define this function outside of the class declaration?
};
};

最佳答案

使用双模板:

template<typename T>
template<typename Q>
void A<T>::B<Q>::func(const A<T>& a)
{
}

关于c++ - 如何在类声明之外定义嵌套模板类的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11106725/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com