注意:输入输出操作符的重载只能依靠友元函数(而不能用成员函数)
ostream& operate<<(ostream &out,Complex &c1)//函数返回值当左值需要返回一个引用 { out<<“12345,生活真是苦”<<endl; return out; }