對象之間比較

重寫equals方法和hashcode方法 public boolean equals(Object otherobj){ if(otherobj == null) return false; else{ if(otherobj instanceof User){ User user = (User) otherobj; if(user.id == id && name.equals(user.n
相關文章
相關標籤/搜索