类与对象

Posted daylight-deng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类与对象相关的知识,希望对你有一定的参考价值。

使用类计算矩形的面积。定义并实现一个矩形类,有长和宽两个属性,由成员函数计算矩形的面积。矩形类Rectang接口定义如下:

class Rectangle {

public:

    void setLength(int l);//设置矩形的长度

    void setWidth(int w); //设置矩形的宽度

    int getArea();    //计算并返回矩形的面积

private:

    int length, width;  //矩形的长度和宽度        

};

请实现Rectangle类的成员函数。
 

测试程序样例:

#include <iostream>
using namespace std;
 
class Rectangle {
public:
    void setLength(int l);//设置矩形的长度
    void setWidth(int w); //设置矩形的宽度
    int getArea();        //计算并返回矩形的面积
private:
    int length, width;    //矩形的长度和宽度 
};
 
int main()
{
    Rectangle r;
    int len, w;
    cin >> len >> w;
    r.setLength(len);
    r.setWidth(w);
    cout << r.getArea() << "
";
    return 0;
}
/* 你的代码将嵌在这里 */

 

代码如下:

void Rectangle::setLength(int l)

{

       length=l;

}

void Rectangle::setWidth(int w)

{

       width=w;

}

int Rectangle::getArea()

{

       return length*width;

}

技术分享图片

 

以上是关于类与对象的主要内容,如果未能解决你的问题,请参考以下文章

Runtime 运行时:类与对象

java 类与对象

类与对象的使用

类与对象

动手动脑——类与对象

Java课后动手动脑 类与对象