- 浏览: 1393228 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (328)
- JSF (27)
- 生活 (12)
- Ajax (26)
- Maven (6)
- CSS (1)
- Shale (3)
- SiteMesh (1)
- Ext (15)
- JMX (2)
- Windows技巧 (7)
- 工作感悟 (18)
- SVN (2)
- SVG (0)
- GoogleGear (0)
- RAP (2)
- SOA与WebService (3)
- 笔记本技术研究 (1)
- Microsoft (2)
- 英语学习 (3)
- PHP (7)
- web 2.0 (6)
- 语义Web (1)
- IT史话 (3)
- iText (3)
- JVM (1)
- PropertiesEditor (1)
- J2SE (33)
- Spring (2)
- Java Batch (1)
- log (2)
- Struts2 (2)
- DWR (0)
- JAAS (3)
- EJB3 (4)
- Flex (8)
- JFreeChart (1)
- WAS (0)
- 数据库 (2)
- 摄影 (0)
- SQL (1)
- Google App Engine (1)
- linux (5)
- Eclipse plugin (10)
- Testing (0)
- Portal (0)
- 移动互联网 (0)
- SWTBot (1)
最新评论
-
江奇缘:
不错!!!!!!
web.xml里<filter-mapping>中的<dispatcher>作用 -
yy8093:
commonj 第三步,那个调用的方法要在哪里调?servle ...
JAVA中多种计时器的比较与分析 -
di1984HIT:
学习了,不错~
web.xml里<filter-mapping>中的<dispatcher>作用 -
penkee:
com.lowagie.text.DocumentExcept ...
iText中输出 中文 -
氵壞男亼乀:
我想请问下 你哪个html里面引入的几个js文件没看懂!你 ...
DWR入门教程之HelloWorld
Equals、Hash Code 方法详解
Introduction
The Java super class java.lang.Object has two very important methods defined in it. They are -
public boolean equals(Object obj)
public int hashCode()
These methods prove very important when user classes are confronted with other Java classes, when objects of such classes are added to collections etc. These two methods have become part of Sun Certified Java Programmer 1.4 exam (SCJP 1.4) objectives. This article intends to provide the necessary information about these two methods that would help the SCJP 1.4 exam aspirants. Moreover, this article hopes to help you understand the mechanism and general contracts of these two methods; irrespective of whether you are interested in taking the SCJP 1.4 exam or not. This article should help you while implementing these two methods in your own classes.
public boolean equals(Object obj)
This method checks if some other object passed to it as an argument is equal to the object on which this method is invoked. The default implementation of this method in Object class simply checks if two object references x and y refer to the same object. i.e. It checks if x == y. This particular comparison is also known as "shallow comparison". However, the classes providing their own implementations of the equals method are supposed to perform a "deep comparison"; by actually comparing the relevant data members. Since Object class has no data members that define its state, it simply performs shallow comparison.
This is what the JDK 1.4 API documentation says about the equals method of Object class-
Indicates whether some other object is "equal to" this one.
The equals method implements an equivalence relation:
- It is reflexive: for any reference value x, x.equals(x) should return true.
- It is symmetric: for any reference values x and y, x.equals(y) should return true if and only if y.equals(x) returns true.
- It is transitive: for any reference values x, y, and z, if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.
- It is consistent: for any reference values x and y, multiple invocations of x.equals(y) consistently return true or consistently return false, provided no information used in equals comparisons on the object is modified.
- For any non-null reference value x, x.equals(null) should return false.
Note that it is generally necessary to override the hashCode method whenever this method is overridden, so as to maintain the general contract for the hashCode method, which states that equal objects must have equal hash codes.
The contract of the equals method precisely states what it requires. Once you understand it completely, implementation becomes relatively easy, moreover it would be correct. Let's understand what each of this really means.
- Reflexive - It simply means that the object must be equal to itself, which it would be at any given instance; unless you intentionally override the equals method to behave otherwise.
- Symmetric - It means that if object of one class is equal to another class object, the other class object must be equal to this class object. In other words, one object can not unilaterally decide whether it is equal to another object; two objects, and consequently the classes to which they belong, must bilaterally decide if they are equal or not. They BOTH must agree.
Hence, it is improper and incorrect to have your own class with equals method that has comparison with an object of java.lang.String class, or with any other built-in Java class for that matter. It is very important to understand this requirement properly, because it is quite likely that a naive implementation of equals method may violate this requirement which would result in undesired consequences.
- Transitive - It means that if the first object is equal to the second object and the second object is equal to the third object; then the first object is equal to the third object. In other words, if two objects agree that they are equal, and follow the symmetry principle, one of them can not decide to have a similar contract with another object of different class. All three must agree and follow symmetry principle for various permutations of these three classes.
Consistent - It means that if two objects are equal, they must remain equal as long as they are not modified. Likewise, if they are not equal, they must remain non-equal as long as they are not modified. The modification may take place in any one of them or in both of them.
null comparison - It means that any instantiable class object is not equal to null, hence the equals method must return false if a null is passed to it as an argument. You have to ensure that your implementation of the equals method returns false if a null is passed to it as an argument.
Equals & Hash Code relationship - The last note from the API documentation is very important, it states the relationship requirement between these two methods. It simply means that if two objects are equal, then they must have the same hash code, however the opposite is NOT true. This is discussed in details later in this article.
The details about these two methods are interrelated and how they should be overridden correctly is discussed later in this article.
public int hashCode()
This method returns the hash code value for the object on which this method is invoked. This method returns the hash code value as an integer and is supported for the benefit of hashing based collection classes such as Hashtable, HashMap, HashSet etc. This method must be overridden in every class that overrides the equals method.
This is what the JDK 1.4 API documentation says about the hashCode method of Object class-
Returns a hash code value for the object. This method is supported for the benefit of hashtables such as those provided by java.util.Hashtable.
The general contract of hashCode is:
Whenever it is invoked on the same object more than once during an execution of a Java application, the hashCode method must consistently return the same integer, provided no information used in equals comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application.
If two objects are equal according to the equals(Object) method, then calling the hashCode method on each of the two objects must produce the same integer result.
It is not required that if two objects are unequal according to the equals(java.lang.Object) method, then calling the hashCode method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hashtables.
As much as is reasonably practical, the hashCode method defined by class Object does return distinct integers for distinct objects. (This is typically implemented by converting the internal address of the object into an integer, but this implementation technique is not required by the JavaTM programming language.)
As compared to the general contract specified by the equals method, the contract specified by the hashCode method is relatively simple and easy to understand. It simply states two important requirements that must be met while implementing the hashCode method. The third point of the contract, in fact is the elaboration of the second point. Let's understand what this contract really means.
Consistency during same execution - Firstly, it states that the hash code returned by the hashCode method must be consistently the same for multiple invocations during the same execution of the application as long as the object is not modified to affect the equals method.
Hash Code & Equals relationship - The second requirement of the contract is the hashCode counterpart of the requirement specified by the equals method. It simply emphasizes the same relationship - equal objects must produce the same hash code. However, the third point elaborates that unequal objects need not produce distinct hash codes.
After reviewing the general contracts of these two methods, it is clear that the relationship between these two methods can be summed up in the following statement -
Equal objects must produce the same hash code as long as they are equal, however unequal objects need not produce distinct hash codes.
The rest of the requirements specified in the contracts of these two methods are specific to those methods and are not directly related to the relationship between these two methods. Those specific requirements are discussed earlier. This relationship also enforces that whenever you override the equals method, you must override the hashCode method as well. Failing to comply with this requirement usually results in undetermined, undesired behavior of the class when confronted with Java collection classes or any other Java classes.
Correct Implementation Example
The following code exemplifies how all the requirements of equals and hashCode methods should be fulfilled so that the class behaves correctly and consistently with other Java classes. This class implements the equals method in such a way that it only provides equality comparison for the objects of the same class, similar to built-in Java classes like String and other wrapper classes.
- public class Test
- {
- private int num;
- private String data;
- public boolean equals(Object obj)
- {
- if(this == obj)
- return true;
- if((obj == null) || (obj.getClass() != this.getClass()))
- return false;
- // object must be Test at this point
- Test test = (Test)obj;
- return num == test.num &&
- (data == test.data || (data != null && data.equals(test.data)));
- }
- public int hashCode()
- {
- int hash = 7;
- hash = 31 * hash + num;
- hash = 31 * hash + (null == data ? 0 : data.hashCode());
- return hash;
- }
- // other methods
- }
Consider the equals method first. We can see that at line 8, the passed object reference is compared with this object itself, this approach usually saves time if both the object references are referring to the same object on the heap and if the equals comparison is expensive. Next, the if condition at line 10 first checks if the argument is null, if not, then (due to the short-circuit nature of the OR || operator) it checks if the argument is of type Test by comparing the classes of the argument and this object. This is done by invoking the getClass() method on both the references. If either of these conditions fails, then false is returned. This is done by the following code -
if((obj == null) || (obj.getClass() != this.getClass())) return false; // prefer
This conditional check should be preferred instead of the conditional check given by -
if(!(obj instanceof Test)) return false; // avoid
This is because, the first condition (code in blue) ensures that it will return false if the argument is a subclass of the class Test. However, in case of the second condition (code in red) it fails. The instanceof operator condition fails to return false if the argument is a subclass of the class Test. Thus, it might violate the symmetry requirement of the contract. The instanceof check is correct only if the class is final, so that no subclass would exist. The first condition will work for both, final and non-final classes. Note that, both these conditions will return false if the argument is null. The instanceof operator returns false if the left hand side (LHS) operand is null, irrespective of the operand on the right hand side (RHS) as specified by JLS 15.20.2. However, the first condition should be preferred for better type checking.
This class implements the equals method in such a way that it provides equals comparison only for the objects of the same class. Note that, this is not mandatory. But, if a class decides to provide equals comparison for other class objects, then the other class (or classes) must also agree to provide the same for this class so as to fulfill the symmetry and reflexivity requirements of the contract. This particular equals method implementation does not violate both these requirements. The lines 14 and 15 actually perform the equality comparison for the data members, and return true if they are equal. Line 15 also ensures that invoking the equals method on String variable data will not result in a NullPointerException.
While implementing the equals method, primitives can be compared directly with an equality operator (==) after performing any necessary conversions (Such as float to Float.floatToIntBits or double to Double.doubleToLongBits). Whereas, object references can be compared by invoking their equals method recursively. You also need to ensure that invoking the equals method on these object references does not result in a NullPointerException.
Here are some useful guidelines for implementing the equals method correctly.
Use the equality == operator to check if the argument is the reference to this object, if yes. return true. This saves time when actual comparison is costly.
Use the following condition to check that the argument is not null and it is of the correct type, if not then return false.
if((obj == null) || (obj.getClass() != this.getClass())) return false;
Note that, correct type does not mean the same type or class as shown in the example above. It could be any class or interface that one or more classes agree to implement for providing the comparison.
Cast the method argument to the correct type. Again, the correct type may not be the same class. Also, since this step is done after the above type-check condition, it will not result in a ClassCastException.
Compare significant variables of both, the argument object and this object and check if they are equal. If *all* of them are equal then return true, otherwise return false. Again, as mentioned earlier, while comparing these class members/variables; primitive variables can be compared directly with an equality operator (==) after performing any necessary conversions (Such as float to Float.floatToIntBits or double to Double.doubleToLongBits). Whereas, object references can be compared by invoking their equals method recursively. You also need to ensure that invoking equals method on these object references does not result in a NullPointerException, as shown in the example above (Line 15).
It is neither necessary, nor advisable to include those class members in this comparison which can be calculated from other variables, hence the word "significant variables". This certainly improves the performance of the equals method. Only you can decide which class members are significant and which are not.
Do not change the type of the argument of the equals method. It takes a java.lang.Object as an argument, do not use your own class instead. If you do that, you will not be overriding the equals method, but you will be overloading it instead; which would cause problems. It is a very common mistake, and since it does not result in a compile time error, it becomes quite difficult to figure out why the code is not working properly.
Review your equals method to verify that it fulfills all the requirements stated by the general contract of the equals method.
Lastly, do not forget to override the hashCode method whenever you override the equals method, that's unpardonable. ;)
Now, let's examine the hashCode method of this example. At line 20, a non-zero constant value 7 (arbitrary) is assigned to an int variable hash. Since the class members/variables num and data do participate in the equals method comparison, they should also be involved in the calculation of the hash code. Though, this is not mandatory. You can use subset of the variables that participate in the equals method comparison to improve performance of the hashCode method. Performance of the hashCode method indeed is very important. But, you have to be very careful while selecting the subset. The subset should include those variables which are most likely to have the greatest diversity of the values. Sometimes, using all the variables that participate in the equals method comparison for calculating the hash code makes more sense.
This class uses both the variables for computing the hash code. Lines 21 and 22 calculate the hash code values based on these two variables. Line 22 also ensures that invoking hashCode method on the variable data does not result in a NullPointerException if data is null. This implementation ensures that the general contract of the hashCode method is not violated. This implementation will return consistent hash code values for different invocations and will also ensure that equal objects will have equal hash codes.
While implementing the hashCode method, primitives can be used directly in the calculation of the hash code value after performing any necessary conversions, such as float to Float.floatToIntBits or double to Double.doubleToLongBits. Since return type of the hashCode method is int, long values must to be converted to the integer values. As for hash codes of the object references, they should be calculated by invoking their hashCode method recursively. You also need to ensure that invoking the hashCode method on these object references does not result in a NullPointerException.
Writing a very good implementation of the hashCode method which calculates hash code values such that the distribution is uniform is not a trivial task and may require inputs from mathematicians and theoretical computer scientist. Nevertheless, it is possible to write a decent and correct implementation by following few simple rules.
Here are some useful guidelines for implementing the hashCode method correctly.
Store an arbitrary non-zero constant integer value (say 7) in an int variable, called hash.
Involve significant variables of your object in the calculation of the hash code, all the variables that are part of equals comparison should be considered for this. Compute an individual hash code int var_code for each variable var as follows -
If the variable(var) is byte, char, short or int, then var_code = (int)var;
If the variable(var) is long, then var_code = (int)(var ^ (var >>> 32));
If the variable(var) is float, then var_code = Float.floatToIntBits(var);
If the variable(var) is double, then -
long bits = Double.doubleToLongBits(var);
var_code = (int)(bits ^ (bits >>> 32));
If the variable(var) is boolean, then var_code = var ? 1 : 0;
If the variable(var) is an object reference, then check if it is null, if yes then var_code = 0; otherwise invoke the hashCode method recursively on this object reference to get the hash code. This can be simplified and given as -
var_code = (null == var ? 0 : var.hashCode());
Combine this individual variable hash code var_code in the original hash code hash as follows -
hash = 31 * hash + var_code;
Follow these steps for all the significant variables and in the end return the resulting integer hash.
Lastly, review your hashCode method and check if it is returning equal hash codes for equal objects. Also, verify that the hash codes returned for the object are consistently the same for multiple invocations during the same execution.
The guidelines provided here for implementing equals and hashCode methods are merely useful as guidelines, these are not absolute laws or rules. Nevertheless, following them while implementing these two methods will certainly give you correct and consistent results.
Summary & Miscellaneous Tips
Equal objects must produce the same hash code as long as they are equal, however unequal objects need not produce distinct hash codes.
The equals method provides "deep comparison" by checking if two objects are logically equal as opposed to the "shallow comparison" provided by the equality operator ==.
However, the equals method in java.lang.Object class only provides "shallow comparison", same as provided by the equality operator ==.
The equals method only takes Java objects as an argument, and not primitives; passing primitives will result in a compile time error.
Passing objects of different types to the equals method will never result in a compile time error or runtime error.
For standard Java wrapper classes and for java.lang.String, if the equals argument type (class) is different from the type of the object on which the equals method is invoked, it will return false.
The class java.lang.StringBuffer does not override the equals method, and hence it inherits the implementation from java.lang.Object class.
The equals method must not provide equality comparison with any built in Java class, as it would result in the violation of the symmetry requirement stated in the general contract of the equals method.
If null is passed as an argument to the equals method, it will return false.
Equal hash codes do not imply that the objects are equal.
return 1; is a legal implementation of the hashCode method, however it is a very bad implementation. It is legal because it ensures that equal objects will have equal hash codes, it also ensures that the hash code returned will be consistent for multiple invocations during the same execution. Thus, it does not violate the general contract of the hashCode method. It is a bad implementation because it returns same hash code for all the objects. This explanation applies to all implementations of the hashCode method which return same constant integer value for all the objects.
In standard JDK 1.4, the wrapper classes java.lang.Short, java.lang.Byte, java.lang.Character and java.lang.Integer simply return the value they represent as the hash code by typecasting it to an int.
Since JDK version 1.3, the class java.lang.String caches its hash code, i.e. it calculates the hash code only once and stores it in an instance variable and returns this value whenever the hashCode method is called. It is legal because java.lang.String represents an immutable string.
It is incorrect to involve a random number directly while computing the hash code of the class object, as it would not consistently return the same hash code for multiple invocations during the same execution.
Review Questions
The review questions are available separately - here.
Resources
Here is a list of few more resources that might be useful if you are interested in knowing more about these two methods, their implementation and significance.
Object class - API documentation for the java.lang.Object class. The general contract of these two methods is available here.
Effective Java - Nice book by Joshua Bloch. Chapter 3 of this book is available online in a pdf format. This chapter deals with all the methods of java.lang.Object class. It also discusses in details the implementation of equals and hashCode methods, correct and incorrect way of overriding them etc. This article is partially based on the information given in this book.
However, this article is an attempt to explain the mechanism and implementation details of these two methods in a simple and compact presentation. It also adds tips and review questions for better understanding.
JavaWorld Article - This article discusses the methods of java.lang.Object, also explains shortcomings of using the instanceof condition in the equals method.
Importance of equals and hashCode - This FAQ question discusses the importance of overriding equals and hashCode methods correctly. It also discusses important issues regarding these two methods with respect to Java collection framework.
Equals & Hash Code Mock Test - If you are interested in taking the mock test based only on equals and hash code.
Equals and Hash Code Cartoon - A small cartoon strip that I have written, it attempts to illustrate the relationship between the equals and hashCode methods.
J@Whiz 1.4 - This has very good questions with detailed explanation based on equals - hashCode and other SCJP 1.4 exam objectives.
Thanks :)
This article has been reviewed and revised repeatedly so as to make it as correct as possible. Thanks a lot to Valentin Crettaz and friends at JavaRanch for suggesting many changes. Especially thanks to Valentin for pointing out the violation of the symmetry requirement by using the instanceof condition in the equals method. If you notice any ambiguity, error in the article and/or the mock test, please do let me know. Your feedback is very important in making this article and test more useful.
Author: Manish Hatwalne
Sachin Goyal
Tuesday, November 20, 2007
Nice Artical. How can we identify the real address of the java object (Though it is native implementation)?
Tuesday, November 13, 2007
equals() unfortunately is challenging to get "just right" in java. There are many options for 'close enough', though. The "instanceof" operator should be fine to use for equals(), rather than getClass(). If it breaks the implementation, then it's a bug in the subclass, not your class. The correct implemementation (for the current and subclasses) should include "instanceof". (For reference, see Bloch's "Effective Java", ch3 item7).
相关推荐
### Java中`hashCode()`与`equals()`方法详解 #### 前言 在Java编程语言中,`hashCode()`和`equals()`方法是非常重要的概念,它们主要用于处理对象的唯一标识和对象之间的相等性判断。正确地实现这两个方法对于确保...
3. **对象的hash code与equals**:当两个对象值相等(即x.equals(y)返回true),如果它们要存储在HashSet或HashMap中,那么它们的hash code也应该相等,因为哈希表依赖于equals和hash code的一致性。否则,对象将...
特殊情况如重写hash code方法可能导致不同equals的对象有不同的hash code。 这些知识点涵盖了计算机二级等级考试中的多个主题,包括Word操作、数据库管理、编程基础、数据结构、图形用户界面设计、网络安全以及面向...
- 两个对象值相同但hash code可以不同,因为不同的对象可能会有相同的哈希值,取决于哈希函数的设计。 30. **对象参数传递**: - 对象作为参数传递时,是引用传递,方法内对对象的修改会影响到原始对象。 以上...
10. hash code 和 equals:根据 Java 的约定,如果两个对象相等(`x.equals(y) == true`),那么它们的 hash code 必须相同。不同的 hash code 可能会导致对象在哈希表中的位置不同,影响查找效率。 11. 参数传递:...
- 即使对象相等(equals() 返回 true),也可能有不同的 hash code。 30. **值传递和引用传递**: - Java 总是按值传递,但对象引用是按值传递的,这意味着对象本身不会被复制。 31. **switch 语句**: - ...
- 对象的hash code相同,不一定equals为true,但equals为true则hash code必须相同。 30. **值传递与引用传递** - Java中参数传递始终是值传递,但对于对象引用,传递的是对象引用的副本,而不是对象本身。 31. *...
两个对象相等(equals() 返回 true),但 hash code 不一定相同,违反 equals 的约定,可能导致哈希表问题。 30. 参数传递:Java 中所有参数传递都是值传递,但对象参数传递的是引用的副本,所以对象的属性可以被...
- equals 方法用于比较对象的内容,而 hash code 用于哈希表的快速查找。 30. **值传递与引用传递** - Java 总是进行值传递,对于对象,传递的是对象引用的副本,而不是对象本身。 31. **switch 语句** - ...
两个对象值相同(equals为true),但hash code可以不同,例如两个对象的属性值相同但顺序不同。 30. **值传递与引用传递** Java中参数传递都是值传递,但对象引用是值传递的,意味着对象内容可以被修改。 31. **...
21. 对象的hash code和equals:两个对象如果equals()返回true,表明它们是相等的。为了保证在哈希结构(如HashSet或HashMap)中正确工作,相等的对象必须有相同的hash code,否则可能导致数据结构的混乱。所以,如果...
29. **对象的hash code与equals** - 两个对象值相同但hash code不同是可能的,比如两个不同对象但内容相同的字符串。 30. **值传递与引用传递** - Java中一切都是对象,方法参数传递的是对象的引用,而非复制...
两个对象的`equals`方法返回`true`并不意味着它们的`hash code`一定相同,但根据`Object`类的约定,如果`equals`返回`true`,那么`hash code`应该相同。 #### 三十、值传递与引用传递 在Java中,无论是基本类型...
- 如果两个对象x和y相等(x.equals(y)为true),它们的hash codes必须相同,这是equals方法的一般约定。 11. **switch语句** - switch不支持byte、long或String类型,仅限于int、short、char和byte。 12. **...
对象值相同(equals为true)不代表hash code必须相同,只要equals相等,对象就可以认为是等价的。 30. **值传递与引用传递** Java总是进行值传递,对象的引用是按值传递的,这意味着方法不能直接修改对象本身,但...
43. **hash code与equals()**:两个对象值相同但hash code不同是可能的,因为hash code是基于对象的特征计算的,不同对象可能有相同的特征。 44. **方法参数传递**:Java方法参数传递是按值传递,对于对象,传递的...
33. **hash code与equals**:两个对象值相同但hash code不同是可能的,因为哈希冲突。但equals为true时,hash code应相等。 34. **构造器不可重写**:构造器不是方法,不能被重写,但可以重载。 以上是Java面试中...
29. **对象的equals()与hash code** - 两个对象值相同但hash code可能不同,因为不同的实现可能导致不同的哈希值。 30. **值传递与引用传递** - Java总是进行值传递,对于基本类型传递的是值本身,对于对象传递...
29. **hash code 和 equals** 两个对象值相同但 hash code 可以不同,比如两个不同的对象引用指向了相同的字符串常量。 30. **值传递与引用传递** Java 中所有参数传递都是值传递,但对于对象参数,传递的是对象...