有如下程序: #include Using namespace std; class Base{ public: Base(int x=0):valB(x){cout

admin2020-07-23  18

问题 有如下程序:
#include
Using namespace std;
class Base{
public:
  Base(int x=0):valB(x){cout<  ~Base(){cout<Private:
  int valB;
};
class Derived:public Base{
public:
  Derived(int x=0,int y=0):Base(x),valD(y){cout<  ~Derived(){cout<private:
  int valD;
};
int main(){
  Derived obj12(2,3);
  return 0;
}
运行时的输出结果是(    )。

选项 A、2332
B、2323
C、3232
D、3223

答案A

解析 本题使用析构函数。
转载请注明原文地址:https://jikaoti.com/ti/ybl0FFFM
0

最新回复(0)