有如下程序: #inc1ude<iostream> using namespace std; c1ass Comp1ex { double re,im; public: Comp1ex(double

admin2017-06-16  54

问题 有如下程序:
    #inc1ude<iostream>
    using namespace std;
    c1ass Comp1ex
    {
    double re,im;
    public:
    Comp1ex(double r,double i):re(r), im(i){}
    double real()const{return re,}
    double image()const{return im;}
    Comp1ex& operator+=(Comp1ex a)
    {
    re+=a.re;
    im+=a.im;
    return *this;
        }
    };
    ostream& operator<<(ostream&s,const Comp1ex&z)
    {
    retum s<<’(’<<z.real()<<’,’<<z.image()<<’)’;
    }
    int main()
    {
    Comp1ex x(1,一2),y(2,3);
    cout<<(x+=y)<<end1;
    retum 0;
    }
    执行这个程序的输出结果是(    )。

选项 A、(1,—2)
B、(2,3)
C、(3,5)
D、(3,1)

答案D

解析 此题考查了运算符重载应用。因为x和y都是Comp1ex类的对象,Comp1ex类中已经重载了+=运算符,表达式x+=y就等价与x.operator+=(y),执行后得到(3,1);按着计算cout<<(x+=y),其等价子调用operator<<(cout,(x+=y)),最后输出结果是(3,1)。
转载请注明原文地址:https://jikaoti.com/ti/Lgt0FFFM
0

最新回复(0)