博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
key可以重复的map集合:IdentityHashMap
阅读量:5992 次
发布时间:2019-06-20

本文共 1589 字,大约阅读时间需要 5 分钟。

之前的Map操作中key值的内容不能重复,如果重复的话,后面的内容会把前面的内容覆盖掉。

程序范例:

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对象
  map = new HashMap<Person,String>() ;
  map.put(new Person("张三",30),"zhangsan_1") ; // 加入内容
  map.put(new Person("张三",30),"zhangsan_2") ; // 加入内容
  map.put(new Person("李四",31),"lisi") ; // 加入内容
  Set<Map.Entry<Person,String>> allSet = null ; // 准备使用Set接收全部内容
  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()) ;
  }
 }
};

程序运行结果:

姓名:李四;年龄:31-->lisi

姓名:张三;年龄:30-->zhangsan_2  //根据程序运行结果可以发现,重复的key的内容将前面第一个key的内容给覆盖了

只要地址不相等(key1!=key2),就可以利用IdentityHashMap来实现将不重复地址的key,但是内容是一样的key添加到集合中去。

对象内容一样但是地址不同,这是由于在实例化的过程中都是用new这个关键字(每次使用new这个关键字,vm都会给其分配一个内存空间),所以可以实现地址不同但是内容一样

转载于:https://www.cnblogs.com/6502ck/p/3385404.html

你可能感兴趣的文章
知物由学 | AI时代,那些黑客正在如何打磨他们的“利器”?(一)
查看>>
Mysql 查询decimal 引号‘’增加精度
查看>>
组织分解结构(Organizational Breakdown Structure OBS)
查看>>
跟小静读CLR via C#(09)-扩展方法
查看>>
Flex的UI组件Tile
查看>>
Java中对象的等价性比较
查看>>
windows phone 7中简单使用Usercontrol
查看>>
Graham King » In-memory key-value store in C, Go and Python
查看>>
(转)理解Android系统的进程间通信原理(一)----RPC中的代理模式
查看>>
程序员的自我修养——说明
查看>>
Skynet --- ruby的类Google Map/Reduce框架
查看>>
InsertCommand属性---把数据集的新行保存到数据源中
查看>>
一个基于jQuery Mobile的移动设备实时幻灯javascript类库 - taciónJS
查看>>
SQL datediff 计算时间差
查看>>
Python连接MySQL - [Python]
查看>>
网易有道面经(2013校园招聘杭州站)zz
查看>>
【Andorid X 项目笔记】嵌套Fragment的使用(5)
查看>>
每日英语:Where Were You in 1979?
查看>>
通用高性能 Windows Socket 组件 HP-Socket v2.2.1(增加 PULL 模型支持)
查看>>
深入浅出HTTP协议(WEB开发和面试必备)
查看>>