2012年6月17日
摘要: #include<iostream>#include<ostream>#include<string>using namespace std;class A{ friend ostream& operator<<(ostream& out, const A & a) { out<<a.str; return out; }public: string str; A(string s):str(s){} A& operator=(const A&); A& operator+=(const 阅读全文
posted @ 2012-06-17 21:25 cs_jin_scor 阅读(948) 评论(4) 推荐(0) 编辑