我有一个类似于下面代码的基类。我正在尝试重载 << 以与 cout 一起使用。但是,g++ 说:
base.h:24: warning: friend declaration ‘std::ostream& operator<<(std::ostream&, Base<T>*)’ declares a non-template function
base.h:24: warning: (if this is not what you intended, make sure the function template has already been declared and add <> after the function name here) -Wno-non-template-friend disables this warning
我尝试在类声明/原型中的 << 之后添加 <>。但是,我明白了does not match any template declaration
。我一直在尝试将运算符定义完全模板化(我想要),但我只能让它与以下代码一起使用,并手动实例化运算符。
基础.h
template <typename T>
class Base {
public:
friend ostream& operator << (ostream &out, Base<T> *e);
};
基础.cpp
ostream& operator<< (ostream &out, Base<int> *e) {
out << e->data;
return out;
}
我想在标头base.h中包含这个或类似的:
template <typename T>
class Base {
public:
friend ostream& operator << (ostream &out, Base<T> *e);
};
template <typename T>
ostream& operator<< (ostream &out, Base<T> *e) {
out << e->data;
return out;
}
我在网上其他地方读到,在原型中将 <> 放在 << 和 () 之间应该可以解决这个问题,但事实并非如此。我可以把它变成一个单一的功能模板吗?