静态数据成员的初始化 程序改错
[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;
}
补充:软件开发 , C++ ,