xieyue-C++程序设计 各章中的 程序代码 适合初学者

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

软件大小: 4499 K
上传用户: fpeisheng
关键词: xieyue-C 程序设计 程序 代码
下载地址: 免注册下载 普通下载 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				}			

相关资源