Complex Complex::operator+(Complex &z2)//这里只写一个, { Complex z3; z3.r=r+z2.r;//注意这里写法 z3.i=i+z2.i; return z3; }