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 Centos7 / PETGEM
  • ¥15 csmar数据进行spss描述性统计分析
  • ¥15 各位请问平行检验趋势图这样要怎么调整?说标准差差异太大了
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题
  • ¥15 wpf界面一直接收PLC给过来的信号,导致UI界面操作起来会卡顿
  • ¥15 init i2c:2 freq:100000[MAIXPY]: find ov2640[MAIXPY]: find ov sensor是main文件哪里有问题吗
  • ¥15 运动想象脑电信号数据集.vhdr
  • ¥15 三因素重复测量数据R语句编写,不存在交互作用
  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗