利用hashtable以類物件為鍵儲存值
阿新 • • 發佈:2019-01-10
class hello { public static void main(String[] args) throws ParseException { Hashtable<Animal, String> map = new Hashtable<>(); map.put(new Animal("狗",4), "哺乳類動物"); map.put(new Animal("狗",4), "犬科動物"); map.put(new Animal("蛇",0), "非哺乳類動物"); map.put(new Animal("雞",2),"非哺乳類動物"); System.out.println(map); }
執行結果
可以發現,雖然第一個和第二個物件內參數一樣,但HashTable並沒有將其作為鍵,而是用new的Animal物件地址作為鍵,如果需要將引數相同的物件作為鍵,就需要重寫類中的equals方法和hashcode方法
@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + leg; result = prime * result + ((name == null) ? 0 : name.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; Animal other = (Animal) obj; if (leg != other.leg) return false; if (name == null) { if (other.name != null) return false; } else if (!name.equals(other.name)) return false; return true; }
重寫後的執行結果: