例9.10.txt
来自「是关于谭浩强老师的C++程序设计课程的程序源代码以及课件」· 文本 代码 · 共 28 行
TXT
28 行
例9.10 引用静态数据成员。
#include <iostream>
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<<a.height<<endl; //通过对象名a引用静态数据成员
cout<<b.height<<endl; //通过对象名b引用静态数据成员
cout<<Box∷height<<endl; //通过类名引用静态数据成员
cout<<a.volume( )<<endl; //调用volume函数,计算体积,输出结果
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?