我正在.cpp 中实现模板成员函数,并了解所涉及的限制(一次只能将此类模板模板化为一种类型)。一切都很好,除了这个案例。虽然我已经让嵌套类的构造函数工作,但我遇到了任何其他嵌套类成员函数的问题。作为参考,我正在使用 VC++ 11 进行编译。
在.h中:
template<typename T> class TemplateClass
{
class NestedClass
{
NestedClass();
bool operator<(const NestedClass& rhs) const;
};
};
在 .cpp 中:
//this compiles fine:
template<typename T>
TemplateClass<T>::NestedClass::NestedClass()
{
//do stuff here
}
//this won't compile:
template<typename T>
bool TemplateClass<T>::NestedClass::operator<(const TemplateClass<T>::NestedClass& rhs) const
{
//do stuff here
return true;
}
template class TemplateClass<int>; //only using int specialization
编辑:这是错误,都指向operator<
实施行
错误 C2059:语法错误:'const'
错误 C2065:'rhs':未声明的标识符
错误 C2072:'TemplateClass::NestedClass::operator <':函数初始化
错误 C2470:'TemplateClass::NestedClass::operator <':看起来像函数定义,但没有参数列表;跳过明显的正文
错误 C2988:无法识别的模板声明/定义