下列程序的运行结果是( )。 #include(iostream.h) class test { private: int hum; public: test(); int TEST(){return hum+100;} ~test(

admin2021-06-10  19

问题 下列程序的运行结果是(    )。
#include(iostream.h)
class test
{
private:
  int hum;
public:
  test();
  int TEST(){return hum+100;}
  ~test();
};
test::test(){num=0;)
test::~test(){cout<<"Destructor is active"<void main()
{
  test x[3];
  cout<}

选项 A、 
B、 
C、 
D、 

答案A

解析 本题考查基本的类的定义,构造函数以及对象数组的概念。
转载请注明原文地址:https://kaotiyun.com/show/sufp777K
0

相关试题推荐
最新回复(0)