jiajia241 发表于 2015-3-24 13:31:32

小女子请教大家一题,先谢过大家!

按要求编写程序:定义一个矩形类Rectangle,要求如下:(1)包含四个double型私有数据成员x,y,width和height分别存放矩形的横坐标,纵坐标,宽和高。(2)定义构造函数,对四个数据成员进行初始化,该函数的所有参数的默认值均为0.(3)用成员函数重载前置“++”运算符,实现矩形对象长和宽的加1运算。(4)用友元函数重载“==”运算符,实现对两个矩形对象面积是否相等的判断。(5)定义getArea()函数,返回矩形对象的面积。(6)定义showInfo()函数,显示矩形对象的坐标、宽和高。(7)在主函数中对矩形类的各个功能进行测试。

_思緒亂 发表于 2015-3-24 16:08:14

#include <IOSTREAM>
#include <STDIO.H>

class Rectangle
{
        int x;
        int y;
        int width;
        int height;
public:
        Rectangle()
        {
                x = 0;
                y = 0;
                width = 0;
                height = 0;
        }
       
        Rectangle operator=(const Rectangle& rect)
        {
                Rectangle r;
                r.x = rect.x;
                r.y = rect.y;
                r.width = rect.width;
                r.height = rect.height;
                return r;
        }

        const Rectangle operator++()
        {
                ++width;
                ++height;
                return *this;
        }

        friend inline bool operator==(const Rectangle &rect, const Rectangle &rect1)
        {
                return ((rect1.x==rect.x) && (rect1.y==rect.y) && (rect1.width==rect.width) && (rect.height==rect.height));
        }

        int getArea()
        {
                return (width * height);
        }

        void showInfo()
        {
                printf("x=%d\ty=%d\twidth=%d    height=%d\r\n", x, y, width, height);
        }
};

int main()
{
        Rectangle rect;
        Rectangle rect1;

        rect1 = ++rect;
        rect.showInfo();

        bool b = (rect==rect1);
        int area = rect.getArea();
        printf("b=%s\tarea=%d\r\n", b?"TRUE":"FALSE", area);

        getchar();

        return 0;
}
页: [1]
查看完整版本: 小女子请教大家一题,先谢过大家!