[cpp]
/*
* 程序的版權和版本聲明部分
* Copyright (c)2012, 煙台大學計算機學院學生
* All rightsreserved.
* 文件名稱: fun.cpp
* 作 者:李蒙
* 完成日期:2013 年 4月 12日
* 版本號: v1.0
* 對任務及求解方法的描述部分:
* 輸入描述:略
* 問題描述:略
* 程序輸出:如下
*/
/*
原代碼
*/
#include <iostream>
#include <string>
using namespace std;
class Box
{
public:
Box(int h,int w,int l):height(h),width(w),length(l){}
int volume( ){return height*width*length;};
private:
static int height; //靜態的數據成員
int width;
int length;
};
int main()
{
Box b(2,3,4);
cout<<"volume is "<<b.volume()<<endl;
return 0;
}
/*
修正後
*/
#include <iostream>
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; //對靜態數據成員height初始化
int main()
{
Box b(3,4);
cout<<"volume is "<<b.volume()<<endl;
return 0;
}
/*
* 程序的版權和版本聲明部分
* Copyright (c)2012, 煙台大學計算機學院學生
* All rightsreserved.
* 文件名稱: fun.cpp
* 作 者:李蒙
* 完成日期:2013 年 4月 12日
* 版本號: v1.0
* 對任務及求解方法的描述部分:
* 輸入描述:略
* 問題描述:略
* 程序輸出:如下
*/
/*
原代碼
*/
#include <iostream>
#include <string>
using namespace std;
class Box
{
public:
Box(int h,int w,int l):height(h),width(w),length(l){}
int volume( ){return height*width*length;};
private:
static int height; //靜態的數據成員
int width;
int length;
};
int main()
{
Box b(2,3,4);
cout<<"volume is "<<b.volume()<<endl;
return 0;
}
/*
修正後
*/
#include <iostream>
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; //對靜態數據成員height初始化
int main()
{
Box b(3,4);
cout<<"volume is "<<b.volume()<<endl;
return 0;
}
輸出結果: