每个Java对象都有hashCode()和 equals()方法。许多类忽略(Override)这些方法的缺省实施,以在对象实例之间提供更深层次的语义可比性。在Java理念和实践这一部分,Java开发人员Brian Goetz向您介绍在创建Java类以有效和准确定义hashCode()和equals()时应遵循的规则和指南。您可以在讨论论坛与作者和其它读者一同探讨您对本文的看法。(您还可以点击本文顶部或底部的讨论进入论坛。)
虽然Java语言不直接支持关联数组 -- 可以使用任何对象作为一个索引的数组 -- 但在根Object类中使用hashCode()方法明确表示期望广泛使用HashMap(及其前辈Hashtable)。理想情况下基于散列的容器提供有效插入和有效检索;直接在对象模式中支持散列可以促进基于散列的容器的开发和使用。
定义对象的相等性
Object类有两种方法来推断对象的标识:equals()和hashCode()。一般来说,如果您忽略了其中一种,您必须同时忽略这两种,因为两者之间有必须维持的至关重要的关系。特殊情况是根据equals() 方法,如果两个对象是相等的,它们必须有相同的hashCode()值(尽管这通常不是真的)。
特定类的equals()的语义在Implementer的左侧定义;定义对特定类来说equals()意味着什么是其设计工作的一部分。Object提供的缺省实施简单引用下面等式:
public boolean equals(Object obj) { return (this == obj); }
在这种缺省实施情况下,只有它们引用真正同一个对象时这两个引用才是相等的。同样,Object提供的hashCode()的缺省实施通过将对象的内存地址对映于一个整数值来生成。由于在某些架构上,地址空间大于int值的范围,两个不同的对象有相同的hashCode()是可能的。如果您忽略了hashCode(),您仍旧可以使用System.identityHashCode()方法来接入这类缺省值。
忽略 equals() -- 简单实例
缺省情况下,equals()和hashCode()基于标识的实施是合理的,但对于某些类来说,它们希望放宽等式的定义。例如,Integer类定义equals() 与下面类似:
public boolean equals(Object obj) {
return (obj instanceof Integer
&& intValue() == ((Integer) obj).intValue());
}
在这个定义中,只有在包含相同的整数值的情况下这两个Integer对象是相等的。结合将不可修改的Integer,这使得使用Integer作为HashMap中的关键字是切实可行的。这种基于值的Equal方法可以由Java类库中的所有原始封装类使用,如Integer、Float、Character和Boolean以及String(如果两个String对象包含相同顺序的字符,那它们是相等的)。由于这些类都是不可修改的并且可以实施hashCode()和equals(),它们都可以做为很好的散列关键字。
为什么忽略 equals()和hashCode()?
如果Integer不忽略equals() 和 hashCode()情况又将如何?如果我们从未在HashMap或其它基于散列的集合中使用Integer作为关键字的话,什么也不会发生。但是,如果我们在HashMap中使用这类Integer对象作为关键字,我们将不能够可靠地检索相关的值,除非我们在get()调用中使用与put()调用中极其类似的Integer实例。这要求确保在我们的整个程序中,只能使用对应于特定整数值的Integer对象的一个实例。不用说,这种方法极不方便而且错误频频。
Object的interface contract要求如果根据 equals()两个对象是相等的,那么它们必须有相同的hashCode()值。当其识别能力整个包含在equals()中时,为什么我们的根对象类需要hashCode()?hashCode()方法纯粹用于提高效率。Java平台设计人员预计到了典型Java应用程序中基于散列的集合类(Collection Class)的重要性--如Hashtable、HashMap和HashSet,并且使用equals()与许多对象进行比较在计算方面非常昂贵。使所有Java对象都能够支持 hashCode()并结合使用基于散列的集合,可以实现有效的存储和检索。
实施equals()和hashCode()的需求
实施equals()和 hashCode()有一些限制,Object文件中列举出了这些限制。特别是equals()方法必须显示以下属性:
Symmetry:两个引用,a和 b,a.equals(b) if and only if b.equals(a)
Reflexivity:所有非空引用, a.equals(a)
Transitivity:If a.equals(b) and b.equals(c), then a.equals(c)
Consistency with hashCode():两个相等的对象必须有相同的hashCode()值
Object的规范中并没有明确要求equals()和 hashCode() 必须一致 -- 它们的结果在随后的调用中将是相同的,假设“不改变对象相等性比较中使用的任何信息。”这听起来象“计算的结果将不改变,除非实际情况如此。”这一模糊声明通常解释为相等性和散列值计算应是对象的可确定性功能,而不是其它。
对象相等性意味着什么?
人们很容易满足Object类规范对equals() 和 hashCode() 的要求。决定是否和如何忽略equals()除了判断以外,还要求其它。在简单的不可修值类中,如Integer(事实上是几乎所有不可修改的类),选择相当明显 -- 相等性应基于基本对象状态的相等性。在Integer情况下,对象的唯一状态是基本的整数值。
对于可修改对象来说,答案并不总是如此清楚。equals() 和hashCode() 是否应基于对象的标识(象缺省实施)或对象的状态(象Integer和String)?没有简单的答案 -- 它取决于类的计划使用。对于象List和Map这样的容器来说,人们对此争论不已。Java类库中的大多数类,包括容器类,错误出现在根据对象状态来提供equals()和hashCode()实施。
如果对象的hashCode()值可以基于其状态进行更改,那么当使用这类对象作为基于散列的集合中的关键字时我们必须注意,确保当它们用于作为散列关键字时,我们并不允许更改它们的状态。所有基于散列的集合假设,当对象的散列值用于作为集合中的关键字时它不会改变。如果当关键字在集合中时它的散列代码被更改,那么将产生一些不可预测和容易混淆的结果。实践过程中这通常不是问题 -- 我们并不经常使用象List这样的可修改对象做为HashMap中的关键字。
一个简单的可修改类的例子是Point,它根据状态来定义equals()和hashCode()。如果两个Point 对象引用相同的(x, y)座标,Point的散列值来源于x和y座标值的IEEE 754-bit表示,那么它们是相等的。
对于比较复杂的类来说,equals()和hashCode()的行为可能甚至受到superclass或interface的影响。例如,List接口要求如果并且只有另一个对象是List,而且它们有相同顺序的相同的Elements(由Element上的Object.equals() 定义),List对象等于另一个对象。hashCode()的需求更特殊--list的hashCode()值必须符合以下计算:
hashCode = 1;
Iterator i = list.iterator();
while (i.hasNext()) {
Object obj = i.next();
hashCode = 31*hashCode + (obj==null ? 0 : obj.hashCode());
}
不仅仅散列值取决于list的内容,而且还规定了结合各个Element的散列值的特殊算法。(String类规定类似的算法用于计算String的散列值。)
编写自己的equals()和hashCode()方法
忽略缺省的equals()方法比较简单,但如果不违反对称(Symmetry)或传递性(Transitivity)需求,忽略已经忽略的equals() 方法极其棘手。当忽略equals()时,您应该总是在equals()中包括一些Javadoc注释,以帮助那些希望能够正确扩展您的类的用户。
作为一个简单的例子,考虑以下类:
class A {
final B someNonNullField;
C someOtherField;
int someNonStateField;
}
我们应如何编写该类的equals()的方法?这种方法适用于许多情况:
public boolean equals(Object other) {
// Not strictly necessary, but often a good optimization
if (this == other)
return true;
if (!(other instanceof A))
return false;
A otherA = (A) other;
return
(someNonNullField.equals(otherA.someNonNullField))
&& ((someOtherField == null)
? otherA.someOtherField == null
: someOtherField.equals(otherA.someOtherField)));
}
现在我们定义了equals(),我们必须以统一的方法来定义hashCode()。一种统一但并不总是有效的定义hashCode()的方法如下:
public int hashCode() { return 0; }
这种方法将生成大量的条目并显著降低HashMaps的性能,但它符合规范。一个更合理的hashCode()实施应该是这样:
public int hashCode() {
int hash = 1;
hash = hash * 31 + someNonNullField.hashCode();
hash = hash * 31
+ (someOtherField == null ? 0 : someOtherField.hashCode());
return hash;
}
注意:这两种实施都降低了类状态字段的equals()或hashCode()方法一定比例的计算能力。根据您使用的类,您可能希望降低superclass的equals()或hashCode()功能一部分计算能力。对于原始字段来说,在相关的封装类中有helper功能,可以帮助创建散列值,如Float.floatToIntBits。
编写一个完美的equals()方法是不现实的。通常,当扩展一个自身忽略了equals()的instantiable类时,忽略equals()是不切实际的,而且编写将被忽略的equals()方法(如在抽象类中)不同于为具体类编写equals()方法。关于实例以及说明的更详细信息请参阅Effective Java Programming Language Guide, Item 7 (参考资料) 。
有待改进?
将散列法构建到Java类库的根对象类中是一种非常明智的设计折衷方法 -- 它使使用基于散列的容器变得如此简单和高效。但是,人们对Java类库中的散列算法和对象相等性的方法和实施提出了许多批评。java.util中基于散列的容器非常方便和简便易用,但可能不适用于需要非常高性能的应用程序。虽然其中大部分将不会改变,但当您设计严重依赖于基于散列的容器效率的应用程序时必须考虑这些因素,它们包括:
太小的散列范围。使用int而不是long作为hashCode()的返回类型增加了散列冲突的几率。
糟糕的散列值分配。短strings和小型integers的散列值是它们自己的小整数,接近于其它“邻近”对象的散列值。一个循规导矩(Well-behaved)的散列函数将在该散列范围内更均匀地分配散列值。
无定义的散列操作。虽然某些类,如String和List,定义了将其Element的散列值结合到一个散列值中使用的散列算法,但语言规范不定义将多个对象的散列值结合到新散列值中的任何批准的方法。我们在前面编写自己的equals()和hashCode()方法中讨论的List、String或实例类A使用的诀窍都很简单,但算术上还远远不够完美。类库不提供任何散列算法的方便实施,它可以简化更先进的hashCode()实施的创建。
当扩展已经忽略了equals()的 instantiable类时很难编写equals()。当扩展已经忽略了equals()的 instantiable类时,定义equals()的“显而易见的”方式都不能满足equals()方法的对称或传递性需求。这意味着当忽略equals()时,您必须了解您正在扩展的类的结构和实施详细信息,甚至需要暴露基本类中的机密字段,它违反了面向对象的设计的原则。
结束语
通过统一定义equals()和hashCode(),您可以提升类作为基于散列的集合中的关键字的使用性。有两种方法来定义对象的相等性和散列值:基于标识,它是Object提供的缺省方法;基于状态,它要求忽略equals()和hashCode()。当对象的状态更改时如果对象的散列值发生变化,确信当状态作为散列关键字使用时您不允许更更改其状态。
72.36.192.* 于 2007-04-27 16:07:51发表:
Well done!
online baccarat | slots download | poker websites | poker downloads | bingo online | free poker money | free strip blackjack | slot machine game
72.36.192.* 于 2007-04-27 16:07:12发表:
Well done!
free money casinos | online black jack game | texas holdem free | three card poker | poker usa | play texas holdem | free online bingo | free no deposit casino | blackjack download | free cleopatra slots
72.36.192.* 于 2007-04-27 16:06:18发表:
Thank you!
free poker games | free slot machine downloads | free play slots | casinos online | free gambling | play free blackjack | play roulette online | casino online | blackjack games | free black jack
72.36.192.* 于 2007-04-27 16:06:01发表:
Well done!
poker | casino no deposit | strip blackjack online | new no deposit casino | slots for fun | casino free games | bonus poker | black jack strip | download free poker games | free slots download
72.36.192.* 于 2007-04-27 16:05:47发表:
Great work!
free slot downloads | slots of fun | aussie slots | free poker game download | online poker game | free monopoly online | poker game online | roulette free | games slots | flash casino
72.36.192.* 于 2007-04-26 19:54:45发表:
Thank you!
free real ringtones for cingular | ringtones for suncom | free midi ringtones | mp3 to ringtone | motorola mp3 | free cellphone ringtones | nextel downloads | free cellular one ringtones | country music ringtones | ringtone
72.36.192.* 于 2007-04-26 19:54:11发表:
Well done!
ringtones composer | ringtone motorola | free cellular ringtones | free ringtones for t mobile | free real tone ringtones | free ringtones for lg | samsung free ringtones | verizon ring tones | free tracfone ringtones | u s cellular ringtones
72.36.192.* 于 2007-04-26 19:53:54发表:
Nice site!
ringtones for verizon | ringtone websites | ringtone jukebox | polyphonic ringtones | christian ringtones | centennial wireless ringtones | bollywood ringtones | real ringtones | free ringtones for sprint | free sms ringtones
72.36.192.* 于 2007-04-26 19:53:43发表:
Well done!
motorola ringtones | nextel ringtone | ctu ring tone | t mobile ringtones | ringtone uploader | free blackberry ringtones | sprint pcs ringtones | free ctu ringtone | free polyphonic ringtone download | music ringtones
72.36.192.* 于 2007-04-26 19:53:29发表:
Well done!
free anime | verizon ctu ringtone | free mp3 ringtone download | alltel ringtones | ringtone midi | free ringtones for nokia | funny ringtones | free kyocera ringtones | free tmobile ringtones | star wars ringtone
72.36.192.* 于 2007-04-25 05:25:30发表:
Well done!
free ringtones for boost mobile | free polyphonic ringtone | crazy frog ring tone | free star wars ringtones | nokia free download | download free nokia ringtone | ringtones for cingular | free hi fi ringtones | harry potter ringtone | free ringtones for sprint phones
72.36.192.* 于 2007-04-25 05:24:58发表:
Thank you!
free nextel ringtone downloads | mobile phone ringtones | us cellular ring tones | nokia free ringtones | alltel ringtones | ringtones cingular | gospel ringtones | ctu ringtones | mosquito ringtone | verizon ringtones free
72.36.192.* 于 2007-04-25 05:24:06发表:
Thank you!
free wav ringtones | free nascar ringtones | real ringtones | free samsung ringtones | free ring tones | free centennial wireless ringtones | free phone downloads | lg ringtones | free bollywood ringtones | free funny ringtones
72.36.192.* 于 2007-04-25 05:23:33发表:
Good design!
free 24 ringtone | 24 ctu ringtone verizon | free ringtones for t-mobile | download free polyphonic ringtones | 24 ringtones | anime ringtones | free ringtones for tracfone | free mp3 ringtones download | download free ringtone | free wwe ringtones
72.36.192.* 于 2007-04-25 05:23:11发表:
Thank you!
free christian ringtones | cellular south | funny ringtone | bollywood ringtones | ringtones lg | ringtones mp3 | free ringtones verizon | blackberry ringtones | sprint ringtones | free ringtones for cingular
72.36.192.* 于 2007-04-24 07:28:00发表:
Nice site!
casino online | games slots | free slots no downloads | free monopoly online | free monopoly slots | free strip blackjack | poker game download | casino poker | play roulette online | holdem poker
72.36.192.* 于 2007-04-24 07:26:49发表:
Well done!
free blackjack game | internet casinos | free slots on line | free online slot machines | free video slot games | best poker sites | black jack | virtual poker | texas holdem | online black jack game
72.36.192.* 于 2007-04-24 07:26:06发表:
Good design!
free play slot machines | free on line slots | play texas hold em | party poker | free slot downloads | play blackjack free | game slot | online free roulette | free poker games | free no deposit casino
72.36.192.* 于 2007-04-24 07:24:58发表:
Well done!
play poker | blackjack download | casino slots | online bingo games | free slots for fun | flash casino | texas hold em poker | online slot machines | joker poker | poker websites
72.36.192.* 于 2007-04-24 07:24:23发表:
Great work!
texas hold em free | free poker on line | free slot machines online | poker stars download | download poker games | slots of fun | online free poker | free online poker games | poker usa | free casino online
72.36.192.* 于 2007-04-23 07:50:02发表:
Nice site!
tracfone free ringtones | free ringtones for lg | lg ringtones | ctu ringtone | free ringtones | absolutely free ringtones | funny ringtones | free ringtones for verizon | free music ringtones | free nextel ringtones
72.36.192.* 于 2007-04-23 07:49:22发表:
Nice site!
suncom ringtones | free alltel ringtones | christian ringtones | cell phone ringtones | t mobile ringtones | real tone ringtones | download free ringtone | free 24 ctu ringtone | 24 ringtone free | midi ringtones
72.36.192.* 于 2007-04-23 07:49:01发表:
Well done!
free wav ringtones | harry potter ringtones | verizon ctu ringtone | mtv ringtones | country music ringtones | free ringtones for t mobile | free star wars ringtones | ringtones for sprint phones | free nextel downloads | free ringtones for nokia
72.36.192.* 于 2007-04-23 07:48:02发表:
Good design!
motorola keypress ringtones | motorola ringtones free | mosquito ringtone | free polyphonic ringtone | cisco ringtones | ringtones for tracfones | mp3 to ringtone | free ringtones for cellular south | blackberry ringtones | ctu ring tone
72.36.192.* 于 2007-04-23 07:47:15发表:
Good design!
ringtones mp3 free | motorola razr v3 ringtones | free samsung ringtones | free real ringtones | verizon ringtones | arabic ringtones | nokia free download | free mp3 ringtones download | ringtone download | free ringtones for sprint
72.36.192.* 于 2007-04-22 10:01:39发表:
Nice site!
no download free slots | full tilt poker | free casino slot | free online gambling | best usa casino online | free casino games online | pokerstars download | black jack | slot machines games | hold em poker
72.36.192.* 于 2007-04-22 10:00:47发表:
Well done!
texas hold em online | poker free download | free slot machine downloads | internet gambling | flash casino | play poker for free | poker software | caribbean stud poker | free blackjack online | best poker sites
72.36.192.* 于 2007-04-22 10:00:01发表:
Nice site!
free strip black jack | online poker free | casino free game online | no deposit bonus | free black jack | play texas hold em | blackjack online | online bingo games | bonus poker | free texas holdem
72.36.192.* 于 2007-04-22 09:59:30发表:
Nice site!
poker star | free casinos | free money casino | online free poker | free slot machine game | free blackjack | slots of fun | poker game online | online casino games | slot game
72.36.192.* 于 2007-04-22 09:58:56发表:
Nice site!
free joker poker | poker web sites | free online black jack | play slots for fun | video poker free | bingo games | play free blackjack online | no deposit casinos | strip blackjack | free poker websites
72.36.192.* 于 2007-04-21 08:34:08发表:
Well done!
blackjack online | slot machine game | free online texas holdem | free online slot games | free slots | poker | roulette online | black jack game | free online casinos | pokerstars download
72.36.192.* 于 2007-04-21 08:33:36发表:
Good design!
bonus poker | online free slots | flash casino games | video poker free | roulette game | holdem poker | free slots downloads | free online slots no download | casino on net | on line gambling
72.36.192.* 于 2007-04-21 08:33:03发表:
Well done!
poker game | strip blackjack game | online poker usa | texas holdem free | free video slot games | download casino | caribbean poker | free 3 card poker | free monopoly slots | black jack
72.36.192.* 于 2007-04-21 08:32:29发表:
Well done!
texas hold em | poker texas holdem | monopoly online | no deposit online casinos | gambling online | video slots free | online slots free | play poker | play blackjack free | slots of fun
72.36.192.* 于 2007-04-21 08:31:56发表:
Nice site!
best usa casino online | blackjack download | play roulette online | internet gambling | world series poker | casino free games | poker free | free money no deposit | free on line slots | blackjack games
72.36.192.* 于 2007-04-20 08:17:38发表:
Great work!
free lg ringtones | ringtones wav | free wwe ringtones | downloadable ringtones | free alltel ringtones | free mp3 ringtones download | mp3 to ringtone converter | nextel downloads | ringtone motorola | free funny ringtones
72.36.192.* 于 2007-04-20 08:17:11发表:
Good design!
free mp3 ringtone download | motorola ringtone | free ringtones for motorola | ringtone mp3 | free ringtones for lg | mosquito ringtone | free gospel ringtones | polyphonic ringtone | ringtones | cricket ringtones
72.36.192.* 于 2007-04-20 08:16:42发表:
Good design!
nokia downloads | centennial wireless ringtones | samsung ringtones | ringtone ctu | boost ringtones | razr v3 ringtones | free cellular ringtones | free blackberry ringtones | nextel ringtone program | ctu ringtone verizon
72.36.192.* 于 2007-04-20 08:16:11发表:
Nice site!
mp3 ringtones | ctu ring tone | free 24 ctu ringtone | verizon ringtones free | voice ringtone | star wars ringtone | free ringtones for sprint phones | anime ringtones | free mp3 ringtone | free cellular one ringtones
72.36.192.* 于 2007-04-20 08:15:42发表:
Thank you!
download ringtones | free ringtones for tmobile | free ringtones for tracfone | free christian ringtones | free sprint downloads | mosquito ringtone | free midi ringtone | cellphone ringtones | arabic ringtones | ringtones for nokia