有类定义如下: class Type{ public: Type(int i=0); Type operator-(int); friend Type operator+(Type,Type); privat

admin2018-08-13  19

问题 有类定义如下:
    class Type{
    public:
    Type(int i=0);
    Type operator-(int);
    friend Type operator+(Type,Type);
    private:
    int val;
    };
    若有对象定义Type cl;则下列语句序列中,错误的是(    )。

选项 A、Type(3)+cl:
B、cl+Type(3);
C、3-cl;
D、cl-3;

答案C

解析 由于在类Type中对“-”进行了重载,所以根据“-”重载的形式定义,c1-3是正确的,而3-c1是错误的表达式。
转载请注明原文地址:https://jikaoti.com/ti/7At0FFFM
0

最新回复(0)