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日

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度