十一周——继承与派生——项目四 圆的关系(续1)

89 篇文章 0 订阅
18 篇文章 0 订阅

问题及代码:

/*
*Copyright (c) 2014,烟台大学计算机学院
*All rights reserved.
*文件名称:lily.cpp
*作者:李莉
*完成日期:2015年5月24日
*版本号:v1.0
*问题描述:在圆类上重载关系运算符(6种),使之能够按圆的面积比较两个圆的大小。自编main函数完成测试。
*程序输入:无输入
*程序输出:运行结果
*/
#include <iostream>
#include<Cmath>
using namespace std;
class Point
{
public:
    Point(double a=0,double b=0):x(a),y(b) {}		//构造函数
protected:										 //受保护成员
    double x,y;
};

class Circle:public Point //circle是Point类的公用派生类
{
public:
    Circle(double a=0,double b=0,double r=0): Point(a,b),radius(r) { }//构造函数
    double area ( ) const; //计算圆面积
    friend ostream &operator<<(ostream &,const Circle &);//重载运算符“<<”
    //重载关系运算符运算符,使之能够按圆的面积比较两个圆的大小;
    bool operator>(const Circle &);
    bool operator<(const Circle &);
    bool operator>=(const Circle &);
    bool operator<=(const Circle &);
    bool operator==(const Circle &);
    bool operator!=(const Circle &);
protected:
    double radius;
};

//计算圆面积
double Circle::area( ) const
{
    return 3.14159*radius*radius;
}

//重载运算符“<<”,使之按规定的形式输出圆的信息
ostream &operator<<(ostream &output,const Circle &c)
{
    output<<"Center=["<<c.x<<", "<<c.y<<"], r="<<c.radius;
    return output;
}

//重载关系运算符(种)运算符,使之能够按圆的面积比较两个圆的大小;
bool Circle::operator>(const Circle &c)
{
    return (this->radius - c.radius) > 1e-7;
}

bool Circle::operator<(const Circle &c)
{
    return (c.radius - this->radius) > 1e-7;
}

bool Circle::operator>=(const Circle &c)
{
    return !(*this < c);
}

bool Circle::operator<=(const Circle &c)
{
    return !(*this > c);
}

bool Circle::operator==(const Circle &c)
{
    return abs(this->radius - c.radius) < 1e-7;
}

bool Circle::operator!=(const Circle &c)
{
    return abs(this->radius - c.radius) > 1e-7;
}

int main( )
{
    Circle c1(3,2,4),c2(4,5,5);      //c2应该大于c1
    cout<<"圆c1( "<<c1<<" )的面积是 "<<c1.area()<<endl;
    cout<<"圆c2( "<<c2<<" )的面积是 "<<c2.area()<<endl;
    if(c1>c2) cout<<"c1>c2 "<<endl;
    if(c1<c2) cout<<"c1<c2 "<<endl;;
    if(c1>=c2) cout<<"c1>=c2 "<<endl;
    if(c1<=c2) cout<<"c1<=c2 "<<endl;
    if(c1==c2) cout<<"c1=c2 "<<endl;
    if(c1!=c2) cout<<"c1≠C2 "<<endl;
    return 0;
}


运行结果:

 

心得体会:

加油吧,

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值