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日