下列程序的运行结果是【 】。 # include <iostream. h> class test { private: int num; public: test() int TES

admin2010-06-06  32

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

选项

答案100

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

最新回复(0)