每个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-08-19 20:40:09发表:
Thank you!
cfl football | sport betting | nba betting | 2007 breeders cup | nfl gambling | tiger woods majors won bets | racing betting | ice hockey betting | canadian football lines | rugby betting
72.36.192.* 于 2007-08-19 20:38:56发表:
Well done!
2007 golf major odds to win | mlb run line | nfl football betting lines | place bet | best sports book betting | horse racing betting | 2007 us open betting | baseball handicapping | spread football | betting site
72.36.192.* 于 2007-08-19 20:38:41发表:
Good design!
baseball bet | pga futures | free sport bet | golf odds | mlb world series | sports book | golf bet uk | gamble sports bet online | nascar odds to win | nfl sports betting
72.36.192.* 于 2007-08-19 20:38:26发表:
Nice site!
sportsbook | sport betting odds | free bet | how to bet on football | betting lines football | cfl lines | 2008 party win election bets | football league bet | chicago bears bet | british open odds
72.36.192.* 于 2007-08-18 19:09:21发表:
Great work!
tracfone ringtones | suncom ringtones | bedava cep melodi | free cricket ringtones | free sprint downloads | hifi ringtones | free cingular cell phone ringtones | mosquito ring tone | ringtones | free ctu ringtone
72.36.192.* 于 2007-08-18 19:08:31发表:
Thank you!
ringtone composer | nelly furtado ringtones | cellular south | christian ringtones | absolutely free ringtones | free mobile ringtones | klingelton download | free country ringtones | motorola razr v3 ringtones | suonerie telefonini
72.36.192.* 于 2007-08-18 19:07:48发表:
Well done!
cingular ringtones | ctu ringtone verizon | melodias gratis para movil | free nokia ringtones | dzwonki telefon | free nokia downloads | 24 klingelton | dzwonki do samsunga | bollywood ringtones | tmobile free ringtones
72.36.192.* 于 2007-08-18 19:07:34发表:
Good design!
free ringtones for boost mobile | cingular wireless ringtones | free ringtones mp3 | motorola q ringtones | us cellular ringtones | free funny ringtones | midi ringtones | mp3 ringtone | ringtones para celular | razr ringtones
72.36.192.* 于 2007-08-18 19:07:29发表:
Great work!
free ringtones for nokia | keypress ringtones | ringtones cingular | cell phone ringtones | free ringtone creator | free wav ringtones | free ringtones for verizon | free ringtones for nextel | melodie zdarma | gratis mobilspel
203.223.159.* 于 2007-08-18 15:30:12发表:
Great boys :
free mp3 = free mp3 music downloads = free legal music downloads = download music video = music download = free country music downloads = music download = free music downloads = music downloads pc =
http://www.fixgrout.com/cgi/musicpage15.html free mp3 :: http://www.fixgrout.com/cgi/musicpage47.html music downloads :: http://mywebpage.netscape.com/music5site/download-music.htm how to download music :: http://www.viktorschreckengost.org/portal_memberdata/portraits/bergds download music for free :: http://musicdownloads4free.angelfire.com/free-music.html music download :: http://www.fixgrout.com/cgi/musicpage35.html free music downloads :: http://www.fixgrout.com/cgi/musicpage31.html download free music :: http://mywebpage.netscape.com/music5site/download-music.htm free music for ipod :: http://www.fixgrout.com/cgi/musicpage17.html music downloads pc :: http://idisk.mac.com/fmp3musicdownloads/Public/music.html free music :: http://mywebpage.netscape.com/free5mp3/mp3music.html free music to download ::
free mp3 .. download free music .. classical music downloads .. music downloads .. free music ipods .. music download free .. classical music downloads ..
203.121.67.* 于 2007-08-18 11:50:02发表:
Thanks boys :
free mp3 = free music downloads = free music downloads = free legal music downloads = music download = music downloads pc = classical music downloads = free country music downloads = music downloads pc =
http://www.fixgrout.com/cgi/musicpage15.html free mp3 :: http://www.fixgrout.com/cgi/musicpage47.html how to download music :: http://mywebpage.netscape.com/music5site/download-music.htm free music download sites :: http://www.viktorschreckengost.org/portal_memberdata/portraits/bergds FREE MUSIC DOWNLOADS :: http://musicdownloads4free.angelfire.com/free-music.html classical music downloads :: http://www.fixgrout.com/cgi/musicpage35.html music download :: http://www.fixgrout.com/cgi/musicpage31.html free music :: http://mywebpage.netscape.com/music5site/download-music.htm music download :: http://www.fixgrout.com/cgi/musicpage17.html music downloads pc :: http://idisk.mac.com/fmp3musicdownloads/Public/music.html Free Music Downloads :: http://mywebpage.netscape.com/free5mp3/mp3music.html music downloads ::
free mp3 .. free music downloads .. free legal music downloads .. free music for ipod .. music download free .. free mp3 downloads .. free mp3 ..
72.36.192.* 于 2007-08-17 19:20:23发表:
Great work!
free ringtones for sprint | cellular south ringtones | free sprint ringtones | cingular ringtones | toques gratis | free composer ringtones | ringtones 24 | verizon ring tones | free ringtones for us cellular | free cellphone ringtones
72.36.192.* 于 2007-08-17 19:19:23发表:
Nice site!
tmobile ringtones | sprint pcs ringtones | free ringtones for u s cellular | verizon ctu ringtone | free tracfone ringtones | centennial wireless | free downloadable t mobile ringtones | free ctu ringtone | ringtone uploader | free cell phone ring tones
72.36.192.* 于 2007-08-17 19:18:54发表:
Thank you!
downloadable ringtones | toques polifonicos | country ringtones | ringtone 24 ctu | keypress ringtones | free anime | us cellular free ringtones | ringtones gratis | free ringtones for nokia | free us cellular ringtones
72.36.192.* 于 2007-08-17 19:18:42发表:
Well done!
sonnerie gratuit | melodie zdarma | sony ericsson ringtones | free sms ringtones | motorola free ringtones | ringtone download | eminem ringtones | alltel free ringtones | nelly furtado ringtones | ringtone nokia
72.36.192.* 于 2007-08-17 19:18:27发表:
Great work!
sonneries alcatel | free ringtones samsung | melodias para movil | bedava polifonik melodi | ringtones for us cellular | klingelton download | samsung ringtones | free phone downloads | kyocera ringtones | bedava melodi
203.121.67.* 于 2007-08-17 13:30:45发表:
Hi boys! :
free mp3 = music downloads pc = Free Music Downloads = music downloads pc = download music for free = Free Music Downloads = mp3 downloads = music downloads = music downloads pc =
http://www.fixgrout.com/cgi/musicpage15.html free mp3 :: http://www.fixgrout.com/cgi/musicpage47.html free music downloads :: http://mywebpage.netscape.com/music5site/download-music.htm legal music downloads :: http://www.viktorschreckengost.org/portal_memberdata/portraits/bergds free country music downloads :: http://musicdownloads4free.angelfire.com/free-music.html music downloads pc :: http://www.fixgrout.com/cgi/musicpage35.html download music free :: http://www.fixgrout.com/cgi/musicpage31.html free country music downloads :: http://mywebpage.netscape.com/music5site/download-music.htm free mp3 music downloads :: http://www.fixgrout.com/cgi/musicpage17.html music downloads pc :: http://idisk.mac.com/fmp3musicdownloads/Public/music.html free mp3 downloads :: http://mywebpage.netscape.com/free5mp3/mp3music.html free music download sites ::
free mp3 .. classical music downloads .. free mp3 .. free music downloading .. music .. music .. free music downloads ..
72.36.192.* 于 2007-08-16 19:15:54发表:
Nice site!
ringtone download | centennial wireless | ingyen sms | free ring tones | download free ringtones | free mp3 ringtone download | ringtones lg | verizon ctu ringtone | nextel ringtones | free music ringtones
72.36.192.* 于 2007-08-16 19:14:58发表:
Well done!
free nascar ringtones | mp3 to ringtone converter | free ringtones for cricket | samsung free ringtones | toques telemoveis | klingelton download | ringtones | free verizon ringtones | caller ringtones | free suncom ringtones
72.36.192.* 于 2007-08-16 19:14:24发表:
Great work!
dzwonki true tone | free sprint pcs ringtones | free nokia downloads | tapety zdarma | gospel ringtones | ringtone motorola | bedava polifonik melodi | free cellular one ringtones | toques siemens | ringtone 24
72.36.192.* 于 2007-08-16 19:14:09发表:
Nice site!
free ringtones for nokia | free ringtones for sprint | ringtones mp3 free | 50 cent ringtones | polyphonic ringtones | ctu ringtone | free ringtones alltel | cellular south | free tmobile ringtones | christian ringtones
72.36.192.* 于 2007-08-16 19:13:55发表:
Good design!
ringtones midi | free real tone ringtones | razr v3 ringtones | suonerie cellulare gratis | ringtones mp3 | sanyo ringtones | sonneries telephone | anime ringtones | blackberry ringtones | melodias para movil
203.121.67.* 于 2007-08-16 15:52:15发表:
Hi, my sites: :
free mp3 = free limewire = free ipod music downloads sites = free ipod music downloads sites = Free Music Downloads = free legal music downloads = music download free = music download = music downloads pc =
http://www.fixgrout.com/cgi/musicpage15.html free mp3 :: http://www.fixgrout.com/cgi/musicpage47.html legal music downloads :: http://mywebpage.netscape.com/music5site/download-music.htm music :: http://www.viktorschreckengost.org/portal_memberdata/portraits/bergds limewire music downloads :: http://musicdownloads4free.angelfire.com/free-music.html music :: http://www.fixgrout.com/cgi/musicpage35.html free music for ipod :: http://www.fixgrout.com/cgi/musicpage31.html free ipod music downloads sites :: http://mywebpage.netscape.com/music5site/download-music.htm free music :: http://www.fixgrout.com/cgi/musicpage17.html music downloads pc :: http://idisk.mac.com/fmp3musicdownloads/Public/music.html free mp3 downloads :: http://mywebpage.netscape.com/free5mp3/mp3music.html download music for free ::
free mp3 .. free music ipods .. download music video .. classical music downloads .. free legal music downloads .. free limewire .. free download music ..
203.121.67.* 于 2007-08-16 14:53:53发表:
Great boys :
free mp3 = music = music download free = Free Music Downloads = free music = download music free = free music download sites = free music ipods = music downloads pc =
http://www.fixgrout.com/cgi/musicpage15.html free mp3 :: http://www.fixgrout.com/cgi/musicpage47.html download free music :: http://mywebpage.netscape.com/music5site/download-music.htm music downloads pc :: http://www.viktorschreckengost.org/portal_memberdata/portraits/bergds free music downloading :: http://musicdownloads4free.angelfire.com/free-music.html mp3 downloads :: http://www.fixgrout.com/cgi/musicpage35.html free music for ipod :: http://www.fixgrout.com/cgi/musicpage31.html download music for free :: http://mywebpage.netscape.com/music5site/download-music.htm free music video :: http://www.fixgrout.com/cgi/musicpage17.html music downloads pc :: http://idisk.mac.com/fmp3musicdownloads/Public/music.html music :: http://mywebpage.netscape.com/free5mp3/mp3music.html download music free ::
free mp3 .. Free Music Downloads .. free legal music downloads .. free music download sites .. free country music downloads .. free download music .. free music ipods ..
72.36.192.* 于 2007-08-15 19:44:42发表:
Good design!
mlb odds | rugby betting | english premiership betting | bet england football online | nfl stats | bet us | online sports book | formula one betting | sportsbook | betting site
72.36.192.* 于 2007-08-15 19:43:49发表:
Well done!
online sports betting | online sport book betting | sport betting | sport betting tip | free fantasy baseball | ernie els bet | bet top 10 | boxing odds | mlb props | cricket odds
72.36.192.* 于 2007-08-15 19:43:19发表:
Great work!
internet bet | cfl lines | ncaa baseball | 2007 al pennant | horse racing bets | brickyard 400 odds | handicapping nfl | nfl football spread | bet on sports | rugby union futures
72.36.192.* 于 2007-08-15 19:43:02发表:
Good design!
nfl betting odds | rugby world cup bet | major league baseball | bet fred | odds on basketball | bet on college basketball | baseball handicapping | 2008 afc champions | free bet | mlb baseball
72.36.192.* 于 2007-08-15 19:42:48发表:
Thank you!
handicapping thoroughbred | handicapping nba | nfl prediction | online horse betting | canadian football odds | sportsbook bonus | nfl football betting lines | golf betting tips | basketball betting | online sport bet
203.223.159.* 于 2007-08-15 18:26:29发表:
Hi, my sites: :
free mp3 = how to download music = download music for free = free music downloads = limewire music downloads = download music video = music downloads pc = free ipod music downloads = music downloads pc =
http://www.fixgrout.com/cgi/musicpage15.html free mp3 :: http://www.fixgrout.com/cgi/musicpage47.html free legal music downloads :: http://mywebpage.netscape.com/music5site/download-music.htm FREE MUSIC DOWNLOADS :: http://www.viktorschreckengost.org/portal_memberdata/portraits/bergds free music to download :: http://musicdownloads4free.angelfire.com/free-music.html free music for ipod :: http://www.fixgrout.com/cgi/musicpage35.html free music downloading :: http://www.fixgrout.com/cgi/musicpage31.html music download :: http://mywebpage.netscape.com/music5site/download-music.htm free music download sites :: http://www.fixgrout.com/cgi/musicpage17.html music downloads pc :: http://idisk.mac.com/fmp3musicdownloads/Public/music.html free music downloads :: http://mywebpage.netscape.com/free5mp3/mp3music.html music downloads ::
free mp3 .. free ipod music downloads .. legal music downloads .. free music ipods .. free music downloads .. Free Music Downloads .. music download ..
203.121.67.* 于 2007-08-15 15:30:12发表:
Thanks boys :
free mp3 = music download free = free ipod music downloads = Free Music Downloads = download free music = limewire music downloads = FREE MUSIC DOWNLOADS = free music downloading = music downloads pc =
http://www.fixgrout.com/cgi/musicpage15.html free mp3 :: http://www.fixgrout.com/cgi/musicpage47.html free mp3 downloads :: http://mywebpage.netscape.com/music5site/download-music.htm free limewire :: http://www.viktorschreckengost.org/portal_memberdata/portraits/bergds free limewire :: http://musicdownloads4free.angelfire.com/free-music.html free music downloads :: http://www.fixgrout.com/cgi/musicpage35.html free music :: http://www.fixgrout.com/cgi/musicpage31.html music download :: http://mywebpage.netscape.com/music5site/download-music.htm mp3 downloads :: http://www.fixgrout.com/cgi/musicpage17.html music downloads pc :: http://idisk.mac.com/fmp3musicdownloads/Public/music.html music downloads :: http://mywebpage.netscape.com/free5mp3/mp3music.html free mp3 downloads ::
free mp3 .. limewire music downloads .. music downloads pc .. free music download .. free music downloads .. free music downloads .. limewire music downloads ..
203.121.67.* 于 2007-08-15 15:06:31发表:
Hi boys! :
free mp3 = music downloads pc = FREE MUSIC DOWNLOADS = free music downloading = music downloads pc = free mp3 downloads = free music downloads = music downloads pc = music downloads pc =
http://www.fixgrout.com/cgi/musicpage15.html free mp3 :: http://www.fixgrout.com/cgi/musicpage47.html free music downloading :: http://mywebpage.netscape.com/music5site/download-music.htm download music video :: http://www.viktorschreckengost.org/portal_memberdata/portraits/bergds download music free :: http://musicdownloads4free.angelfire.com/free-music.html classical music downloads :: http://www.fixgrout.com/cgi/musicpage35.html free music downloads :: http://www.fixgrout.com/cgi/musicpage31.html free music :: http://mywebpage.netscape.com/music5site/download-music.htm download free music :: http://www.fixgrout.com/cgi/musicpage17.html music downloads pc :: http://idisk.mac.com/fmp3musicdownloads/Public/music.html free music downloads :: http://mywebpage.netscape.com/free5mp3/mp3music.html FREE MUSIC DOWNLOADS ::
free mp3 .. free music downloading .. how to download music .. free mp3 music downloads .. free music downloading .. free music video .. free music ..
72.36.192.* 于 2007-08-14 15:43:10发表:
Well done!
basketball college handicapping | wnba props | 2007 british open | nascar odds | nhl odds | sport betting | free bet horse racing | basketball bet | sporting bet | tiger woods bet
72.36.192.* 于 2007-08-14 15:42:18发表:
Thank you!
horse racing wagering | nfl pick | mlb betting | sportsbook betting | college handicapping sports | betting online | heavyweight betting | nfl super bowl | nfl record | afl football
72.36.192.* 于 2007-08-14 15:41:50发表:
Nice site!
college football handicapping | 2008 party win election bets | 2007 nfl draft | pga futures | rugby league futures | 2007 nfl schedule | internet bet | basketball bets | yankee baseball | handicapping nba
72.36.192.* 于 2007-08-14 15:41:34发表:
Good design!
odds to win superbowl 2008 | free fantasy baseball | canadian football spreads | bet on sports | baseball betting odds | football lines | betting calculator | bet on the british open | rugby world cup 2007 | nfl futures
72.36.192.* 于 2007-08-14 15:41:19发表:
Nice site!
mlb betting trends | golf betting tips | thoroughbred racing | baseball handicapping software | 2007 fedex cup futures | online sports betting | place bet | nba odds to win | betting on sports | betting line
72.36.192.* 于 2007-08-13 13:24:24发表:
Great work!
world series of poker download | new free money online casinos | blackjack software | poker games | bingo world | roulette download | strip black jack | poker web sites | poker game | roulette free games
72.36.192.* 于 2007-08-13 13:23:31发表:
Thank you!
play black jack | online poker sites | free poker downloads | free online texas holdem | gala online bingo | virtual poker | roulette | play free online slots | casino online | online black jack
72.36.192.* 于 2007-08-13 13:23:05发表:
Nice site!
monopoly online | bingo scotland | free casino downloads | free casino money | roulette game | free online slots no downloads | free poker games online | world poker | poker bonus | free slot machines online