C++ 静态变量

#include
#include
#include
#include
#include
#include
using namespace std;


class Box
{
   public:
      static int objectCount;
      // 构造函数定义
      Box(double l=2.0, double b=2.0, double h=2.0)
      {
         cout <<"Constructor called." << endl;
         length = l;
         breadth = b;
         height = h;
         // 每次创建对象时增加 1
         objectCount++;
      }
      double Volume()
      {
         return length * breadth * height;
      }
   private:
      double length;     // 长度
      double breadth;    // 宽度
      double height;     // 高度
};
//在外部定义并且初始化静态变量
int Box::objectCount = 0;
int main(void)
{
   Box Box1(3.3, 1.2, 1.5);    // 声明 box1  
   cout << "Total objects: " << Box::objectCount << endl;
   return 0;
}

你可能感兴趣的:(C++,学习)