我在同一个头文件中有两个模板类 A 和 B,如下所示:
template <typename T>
class FirstClass {
public:
bool convert(const FirstClass<T>& f){...}
bool convert(const SecondClass<T>& s){...}
};
template <typename T>
class SecondClass {
public:
bool convert(const FirstClass<T>& f){...}
bool convert(const SecondClass<T>& s){...}
};
为了解决任何未知的类错误,我尝试添加一个前向声明:
template <typename T> class SecondClass ; //adding this to the beginning of the file
我收到以下错误:
2 overloads have similar conversions
could be 'bool FirstClass<T>::convert(const FirstClass<T>& )'
or
could be 'bool FirstClass<T>::convert(const SecondClass<T>& )'
while trying to match the argument list '(FirstClass<T>)'
note: qualification adjustment (const/volatile) may be causing the ambiguity
我假设这是因为我使用的是前向声明的类。除了将实现移动到 Cpp 文件(我被告知这很麻烦)之外,还有其他有效的解决方案吗?
我在 Windows 7 上使用 VisualStudio 2010