key可以重复的map集合:IdentityHashMap
之前的Map操作中key值的內(nèi)容不能重復(fù),如果重復(fù)的話,后面的內(nèi)容會(huì)把前面的內(nèi)容覆蓋掉。
程序范例:
import java.util.IdentityHashMap ;
import java.util.HashMap ;
import java.util.Set ;
import java.util.Iterator ;
import java.util.Map ;
class Person{
?private String name ;
?private int age ;
?public Person(String name,int age){
??this.name = name ;
??this.age = age ;
?}
?public boolean equals(Object obj){
??if(this==obj){
???return true ;
??}
??if(!(obj instanceof Person)){
???return false ;
??}
??Person p = (Person)obj ;
??if(this.name.equals(p.name)&&this.age==p.age){
???return true ;
??}else{
???return false ;
??}
?}
?public int hashCode(){
??return this.name.hashCode() * this.age ;
?}
?public String toString(){
??return "姓名:" + this.name + ",年齡:" + this.age ;
?}
};
public class IdentityHashMapDemo01{
?public static void main(String args[]){
??Map<Person,String> map = null ;?// 聲明Map對(duì)象
??map = new HashMap<Person,String>() ;
??map.put(new Person("張三",30),"zhangsan_1") ;?// 加入內(nèi)容
??map.put(new Person("張三",30),"zhangsan_2") ;?// 加入內(nèi)容
??map.put(new Person("李四",31),"lisi") ;?// 加入內(nèi)容
??Set<Map.Entry<Person,String>> allSet = null ;?// 準(zhǔn)備使用Set接收全部?jī)?nèi)容
??allSet = map.entrySet() ;
??Iterator<Map.Entry<Person,String>> iter = null ;
??iter = allSet.iterator() ;
??while(iter.hasNext()){
???Map.Entry<Person,String> me = iter.next() ;
???System.out.println(me.getKey() + " --> " + me.getValue()) ;
??}
?}
};
程序運(yùn)行結(jié)果:
姓名:李四;年齡:31-->lisi
姓名:張三;年齡:30-->zhangsan_2 //根據(jù)程序運(yùn)行結(jié)果可以發(fā)現(xiàn),重復(fù)的key的內(nèi)容將前面第一個(gè)key的內(nèi)容給覆蓋了
只要地址不相等(key1!=key2),就可以利用IdentityHashMap來(lái)實(shí)現(xiàn)將不重復(fù)地址的key,但是內(nèi)容是一樣的key添加到集合中去。
對(duì)象內(nèi)容一樣但是地址不同,這是由于在實(shí)例化的過(guò)程中都是用new這個(gè)關(guān)鍵字(每次使用new這個(gè)關(guān)鍵字,vm都會(huì)給其分配一個(gè)內(nèi)存空間),所以可以實(shí)現(xiàn)地址不同但是內(nèi)容一樣
轉(zhuǎn)載于:https://www.cnblogs.com/6502ck/p/3385404.html
總結(jié)
以上是生活随笔為你收集整理的key可以重复的map集合:IdentityHashMap的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: foreach对集合的输出作用
- 下一篇: java中的foreach语句