码迷,mamicode.com
首页 > 编程语言 > 详细

java完美equals方法代码段

时间:2015-12-23 19:27:51      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

public boolean equals(Object otherObject) {
    	if(this == otherObject) {    // 检測this与otherObject是否引用同一个对象
    		return true;
    	}

    	if(null == otherObject ) {   // 检測otherObject是否为空
    		return false;
    	}

    	if(!(getClass() == otherObject.getClass())){  // 比較this与oherObject是否属于同一个类,假设equal的语义在每一个子类中有所改变,就用此推断
    		System.out.println("-----------------getClass----------------");
    		return false;
    	}

    	if( ! (otherObject instanceof Apple)) {  // 假设语义同样就用instanceof推断,推断继承时也用到
    		System.out.println("------------instanceof--------------------");
    		return false;
    	}

    	Apple other = (Apple) otherObject;  // 转换为对应类型。对所需域进行推断

    	return name.equals(other.name)&& color.equals(other.color);
     }
}

java完美equals方法代码段

标签:

原文地址:http://www.cnblogs.com/gcczhongduan/p/5070875.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!