摘要:
#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
阅读(958)
评论(4)
推荐(0)
浙公网安备 33010602011771号