⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 例9.10.txt

📁 是关于谭浩强老师的C++程序设计课程的程序源代码以及课件
💻 TXT
字号:
例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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -