相关代码 |
|
例9.10 引用静态数据成员。 #include using namespace std; class Box {public: Box(int,int); int volume( ); static int height; //把height定义为公用的静态的数据成员 int width; int length; }; Box∷Box(int w,int len) //通过构造函数对width和length赋初值 {width=w; length=len; } int Box∷volume( ) {return(height*width*length); } int Box∷height=10; //对静态数据成员height初始化 int main( ) { Box a(15,20),b(20,30); cout cout cout cout }
相关资源 |
|