鱼C论坛

 找回密码
 立即注册
查看: 1325|回复: 1

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

[复制链接]
发表于 2015-3-24 13:31:32 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

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

使用道具 举报

发表于 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;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 19:49

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表