清华大学谭浩强教授的C++教程

源代码在线查看: 例9.10.txt

软件大小: 2103 K
上传用户: xu__tiger
关键词: 清华大学 教程 谭浩强
下载地址: 免注册下载 普通下载 VIP

相关代码

				例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				}			

相关资源