很抱歉我重复了这个问题,但我没有在那里发表评论所需的声誉,而且那里的答案对我来说没有说服力。
#include<iostream>
class my_ostream : public std::ostream
{
public:
std::string prefix;
my_ostream():prefix("*"){}
my_ostream& operator<<(const std::string &s){
std::cout << this->prefix << s;
return *this;
}
};
int main(){
my_ostream s;
std::string str("text");
s << str << std::endl;
}
我在这里得到:
's.my_ostream::operator<<(((const std::string&)((const std::string*)(& str))) 中的 'operator<<' 不匹配) << std::endl' </p>
我不明白为什么。如果它适用于 ostream,它应该适用于 my_ostream。该程序有效:
#include <iostream>
using namespace std;
class a{};
class b:public a{};
class c:public b{};
void f(a){cout << 'a' << endl;}
void f(b){cout << 'b' << endl;}
void f(b, a){cout << "b, a" << endl;}
void f(c){cout << 'c' << endl;}
void f(c, int){cout << "c, int" << endl;}
void f(a*){cout << "pa" << endl;}
void f(b*){cout << "pb" << endl;}
void f(b*, a*){cout << "pb, pa" << endl;}
void f(c*){cout << "pc" << endl;}
void f(c*, int){cout << "pc, int" << endl;}
int main(){
a ao; b bo; c co;
f(ao); f(bo); f(co);
f(co, ao);
a *pa=new(a); b *pb=new(b); c *pc=new(c);
f(pa); f(pb); f(pc);
f(pc, pa);
return 0;}
它输出:
a
b
c
b, a
pa
pb
pc
pb, pa
如此简单的重载并不能解释这个错误。另外,我这里不介绍模板,所以未确定的模板类型参数应该不会起作用。阅读 iostream 代码被证明是非常困难的,所以我很感激任何见解。