标签:hashcode hashmap code 存储结构 相同 .com 抽象 string 结构
Map<String, String> map =new HashMap<String, String>();
for (int i = 0; i < 5; i++) {
map.put(String.valueOf(i),String.valueOf(i));
}
Set<String> set = map.keySet();
Iterator<String> it = set.iterator();
while (it.hasNext()){
String key =it.next();
System.out.println(key+":"+map.get(key));
}
System.out.println("----------------------------------");
for(Map.Entry<String, String> entry:map.entrySet()){
System.out.println(entry.getKey()+":"+entry.getValue());
}
注意:Map集合不能直接使用迭代器或者foreach进行遍历。但是转成Set之后就可以使用了。
l 当给HashMap中存放自定义对象时,如果自定义对象作为key存在,这时要保证对象唯一,必须复写对象的hashCode和equals方法。
l 如果要保证map中存放的key和取出的顺序一致,可以使用LinkedHashMap集合来存放。
l 接口:用来明确所有集合中该具有的功能,相当于在定义集合功能标准;
l 抽象类:把多个集合中功能实现方式相同的方法,抽取到抽象类实现,具体集合不再遍写,继承使用即可;
l 具体类:继承抽象类,实现接口,重写所有抽象方法,达到具备指定功能的集合。每个具体集合类,根据自身的数据存储结构方式,对接口中的功能方法,进行不同方式的实现。
标签:hashcode hashmap code 存储结构 相同 .com 抽象 string 结构
原文地址:https://www.cnblogs.com/gavin-yao/p/10539224.html