m0_57708283 2022-04-01 17:29 采纳率: 50%
浏览 49
已结题

equals方法的实现

Cat类(三个成员变量furcolor,height,weight)的equals方法如下public boolean equals(Object obj)实现过程:先判参数不为空,接着判是否同一类型,否的话,强转后比较三个成员变量均都相同才返回真,否则为假

  • 写回答

3条回答 默认 最新

  • 关注
    
    import java.util.Objects;
    
    public class Cat {
        String furcolor;
        float height;
        float weight;
        public Cat(){}
        public Cat(String furcolor,float height,float weight){
            this.furcolor = furcolor;
            this.height = height;
            this.weight = weight;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            Cat cat = (Cat) o;
            return Float.compare(cat.height, height) == 0 &&
                    Float.compare(cat.weight, weight) == 0 &&
                    Objects.equals(furcolor, cat.furcolor);
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(furcolor, height, weight);
        }
    
        public String getFurcolor() {
            return furcolor;
        }
    
        public void setFurcolor(String furcolor) {
            this.furcolor = furcolor;
        }
    
        public float getHeight() {
            return height;
        }
    
        public void setHeight(float height) {
            this.height = height;
        }
    
        public float getWeight() {
            return weight;
        }
    
        public void setWeight(float weight) {
            this.weight = weight;
        }
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(2条)

报告相同问题?

问题事件

  • 系统已结题 4月9日
  • 已采纳回答 4月1日
  • 创建了问题 4月1日

悬赏问题

  • ¥15 删除虚拟显示器驱动 删除所有 Xorg 配置文件 删除显示器缓存文件 重启系统 可是依旧无法退出虚拟显示器
  • ¥15 vscode程序一直报同样的错,如何解决?
  • ¥15 关于使用unity中遇到的问题
  • ¥15 开放世界如何写线性关卡的用例(类似原神)
  • ¥15 关于并联谐振电磁感应加热
  • ¥60 请查询全国几个煤炭大省近十年的煤炭铁路及公路的货物周转量
  • ¥15 请帮我看看我这道c语言题到底漏了哪种情况吧!
  • ¥66 如何制作支付宝扫码跳转到发红包界面
  • ¥15 pnpm 下载element-plus
  • ¥15 解决编写PyDracula时遇到的问题