根据输出结果填空完成下面程序。 #include<iostream.h> class Test { private: static int val; int a; public: static int func()

admin2010-12-16  26

问题 根据输出结果填空完成下面程序。
#include<iostream.h>
   class Test
   {
   private:
   static int val;
   int a;
   public:
   static int func()
   void sfunc(Test &r);
   };
   ______//初始化静态变量val
   Int Test::func()
   {
   return val++;
   }
   void Test::sfunc(Test &r

选项

答案int,Test::val=200;。

解析  类的静态成员变量必须要进行初始化才能使用初始化时需要用域限定符::指明读变量所属的类名。
转载请注明原文地址:https://kaotiyun.com/show/U7jp777K
0

最新回复(0)