no worriesg 2022-03-21 11:08 采纳率: 75%
浏览 97
已结题

Java设计类的题讨论一下

设计Circle,Rectangle,Geometry类三个类有不同的属性,该怎么去设计 问题看简介

  • 写回答

7条回答 默认 最新

  • 大鹏cool Java领域优质创作者 2022-03-21 15:19
    关注

    设计Circle,Rectangle,Geometry类,Circle类有属性x,y,radius。Rectangle类有左上顶点坐标(x,y),width,height。Geometry类将Circle,Rectangle类组合,设计getDistance函数返回圆与矩形中心的距离

    这里计算的是圆心到矩形中心的距离,示例代码如下:

    public class Cricle {
    
        private double x;
    
        private double y;
    
        private double radius;
    
        public Cricle(double x, double y, double radius) {
            this.x = x;
            this.y = y;
            this.radius = radius;
        }
    
        public double getX() {
            return x;
        }
    
        public double getY() {
            return y;
        }
    
        public double getRadius() {
            return radius;
        }
    }
    
    public class Rectangle {
    
        private double x;
    
        private double y;
    
        private double width;
    
        private double height;
    
        public Rectangle(double x, double y, double width, double height) {
            this.x = x;
            this.y = y;
            this.width = width;
            this.height = height;
        }
    
        public double getX() {
            return x;
        }
    
        public double getY() {
            return y;
        }
    
        public double getWidth() {
            return width;
        }
    
        public double getHeight() {
            return height;
        }
    
    }
    
    public class Geometry {
    
        private Cricle cricle;
    
        private Rectangle rectangle;
    
        public Geometry(Cricle cricle, Rectangle rectangle) {
            this.cricle = cricle;
            this.rectangle = rectangle;
        }
    
        /**
         * 圆心到矩形中心的距离
         *
         * @return
         */
        public double getDistance() {
            double diffX = Math.abs(this.cricle.getX() - (this.rectangle.getX() + this.rectangle.getWidth() / 2));
            double diffY = Math.abs(this.cricle.getY() - (this.rectangle.getY() + this.rectangle.getHeight() / 2));
            // 勾股定理
            return Math.sqrt(diffX * diffX + diffY * diffY);
        }
    
    }
    

    测试代码如下:

    public class Test {
    
        public static void main(String[] args) {
            Cricle cricle = new Cricle(0,0,5);
            Rectangle rectangle=new Rectangle(0,0,6,8);
            Geometry geometry=new Geometry(cricle,rectangle);
            // 5.0
            System.out.println(geometry.getDistance());
        }
    
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(6条)

报告相同问题?

问题事件

  • 系统已结题 3月29日
  • 已采纳回答 3月21日
  • 请详细说明问题背景 3月21日
  • 修改了问题 3月21日
  • 展开全部

悬赏问题

  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同