回复:求教: 关于java, 真是不太明白

public boolean equals(Name otherName)
{
if(!(this.getFirst().equalsIgnoreCase(otherName.getFirst())))
return false;
if(!(this.getMiddle().equalsIgnoreCase(otherName.getMiddle())))
return false;
if(!(this.getLast().equalsIgnoreCase(otherName.getLast())))
return false;
return true;
)

所有跟帖: 

This is a good one, last is 乱弹 -Java鉴定家- 给 Java鉴定家 发送悄悄话 (0 bytes) () 03/23/2005 postreply 09:06:26

请您先登陆,再发跟帖!