7週目の静的データ・メンバーの初期化

801 ワード

             

*      
*                   
* Copyright (c)2013,                  
* All rightsreserved.      
*     : object.cpp      
*       :         
*     :2013 4 17       
*    : v1.0      
*      :   
*     :    
*     :  

#include 
#include 
using namespace std;
class Box
{
private:
       int width;
       int length;
       static  int heigth;
public:
      Box(int w,int l,int h):heigth(h),width(w),length(l){}    //                    
      int volume( ) {return heigth*width*length;};
};

int main()
{
    Box b(2,3,4);                    
    cout<