我正在.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:无法识别的模板声明/定义
最佳答案
NestedClass
作为参数类型在范围内,因此您可以尝试以下操作:
bool TemplateClass<T>::NestedClass::operator<(const NestedClass& rhs) const
MSVC在第一个版本上可能有问题。