1
如何在類聲明之外定義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?
};
};
即使這一切的時候,我發現有關模板的幾件事情直截了當:) –
是的,不知道我是什麼思考 - 爲什麼我不試試?!哈哈謝謝。 – David
@Luchian:是的,我絕對同意......但這個至少有道理:-) – Jason