第七周项目—阅读程序

来源:互联网 发布:js计时器的启动与停止 编辑:程序博客网 时间:2024/05/22 05:20

 

#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;}

错误原因:不能在构造函数中对静态的数据成员初始化。

原创粉丝点击