Map中自定义Key
2019-08-16 11:02:04来源:博客园 阅读 ()
Map中自定义Key
在使用Map集合的时候可以发现对于Key和Value的类型实际上都可以由使用者定义,这就意味着可以用自定义的类来进行Key类型的设置。
对自定义Key类型所在的类中,一定要覆写hashCode()和equals()方法。
package com.iterator.demo; import java.util.HashMap; import java.util.Map; class Person{ private String name; private int age; public Person(String name, int age) { this.name = name; this.age = age; } @Override public int hashCode() {//覆写hashCode() final int prime = 31; int result = 1; result = prime * result + age; result = prime * result + ((name == null) ? 0 : name.hashCode()); return result; } @Override public boolean equals(Object obj) {//覆写equals() if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; Person other = (Person) obj; if (age != other.age) return false; if (name == null) { if (other.name != null) return false; } else if (!name.equals(other.name)) return false; return true; } } public class IteratorDemo { public static void main(String[] args) { Map<Person, String> map = new HashMap<Person, String>();//使用自定义类作为Key map.put(new Person("张三",18), "张三疯"); map.put(new Person("李四",18), "李四光"); map.put(new Person("王五",18), "王五哥"); System.out.println(map.get(new Person("张三", 18)));//通过key找到value } }
原文链接:https://www.cnblogs.com/sunzhongyu008/p/11233487.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 深入解析ThreadLocal和ThreadLocalMap 2020-06-08
- 头条面试居然跟我扯了半小时的Semaphore 2020-06-08
- Invalid [xxx] in servlet mapping 、 <url-pattern& 2020-06-07
- HashMap:源代码(构造方法、put、resize、get、remove、rep 2020-06-04
- Java Spring注入一个接口的多个实现类在map里如何实现?案 2020-06-04
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash