Complex Complex::operator+(Complex B) { return Complex(B.real + real, image + B.image); } B.real和real有什么区别,为什么加法的重载,形参只需要一个类 查看完整描述