[cpp]
/*
程序的版權和版本聲明部分
Copyright (c)2012, 煙台大學計算機學院學生
All rightsreserved.
文件名稱: object.cpp
作者:劉清遠
完成日期: 2013年4月12日
版本號: v1.0
輸入描述:無
問題描述:靜態數據成員的初始化。
程序輸出:輸出Box的Volume
*/
#include <iostream>
#include <string>
using namespace std;
class Box
{
public:
Box(int w,int l):width(w),length(l){}
int volume( ){return height*width*length;};
private:
static int height; //靜態的數據成員
int width;
int length;
};
int Box::height=2;
int main()
{
Box b(3,4);
cout<<"volume is "<<b.volume()<<endl;
system("pause");
return 0;
}
/*
程序的版權和版本聲明部分
Copyright (c)2012, 煙台大學計算機學院學生
All rightsreserved.
文件名稱: object.cpp
作者:劉清遠
完成日期: 2013年4月12日
版本號: v1.0
輸入描述:無
問題描述:靜態數據成員的初始化。
程序輸出:輸出Box的Volume
*/
#include <iostream>
#include <string>
using namespace std;
class Box
{
public:
Box(int w,int l):width(w),length(l){}
int volume( ){return height*width*length;};
private:
static int height; //靜態的數據成員
int width;
int length;
};
int Box::height=2;
int main()
{
Box b(3,4);
cout<<"volume is "<<b.volume()<<endl;
system("pause");
return 0;
}