回複:求教: 關於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

請您先登陸,再發跟帖!