有如下程序: #include <iostream> using namespace std; class AA { int n; public: AA(int k):n(k) { } int get() {ret

admin2009-01-15  34

问题 有如下程序:    #include <iostream>    using namespace std;    class AA {    int n;    public:    AA(int k):n(k) { }    int get() {return n;}    int get()const {retnm n+1; }    int main()    {         AA a(5);         const AA b(6);         cout <<a.get()<<b.get();         return 0;    }执行后的输出结果是______ 。

选项 A、55
B、57
C、75
D、77

答案2

解析 const 是可以标志运算符重载的,所以选择B。
转载请注明原文地址:https://jikaoti.com/ti/Dhd0FFFM
0

最新回复(0)