题目是:做一个矩形的类,输入长度和宽度,然后求出面积. #include <iostream> using namespace std; class Rectangle //矩形类 { public: Rectangle(float w,float l);
float Area();
private: float width,length; }; //类的实现
Rectangle::Rectangle(float w,float l) {width=w;length=l;}
float Rectangle::Area() { return width*length; } //主函数实现 void main() { float width,length;
Rectangle a(width,length);
cout<<"please enter the length and width of the rectangle:"<<endl;
cin >> width >> length;
cout<<"The rectangle's area is "<<a.Area()<<endl; } 在用圆类的时候,就是只有一个参数的时候就可以得到结果,但是这有两个参数的时候,编译有两个 warning: local variable'length' used without having been initialized和 local variable 'width' used without having been initialized 不懂这是怎么回事,帮我改正一下吧,谢谢!!!
[此贴子已经被作者于2005-10-18 13:08:36编辑过]
----------------解决方案--------------------------------------------------------
很简单啊,类相当在struct中定义数据和操作数据的方法。
可以看c++
----------------解决方案--------------------------------------------------------
这个不是c++吗?你怎么贴在C论坛上.
不过有那两个警告是因为Rectangle a(width,length);应该放在cin >> width >> length;后面.
width,length没有赋值就调用会出问题啦.
----------------解决方案--------------------------------------------------------
病急乱投医了,作业嘛!呵呵,谢了!!
----------------解决方案--------------------------------------------------------