用法
map:java.util 中的集合类包含 java 中某些最常用的类。最常用的集合类是 list 和 map。
map 提供了一个更通用的元素存储方法。map 集合类用于存储元素对(称作“键”和“值”),其中每个键映射到一个值。
本文主要介绍java map的初始化、用法、map的两种常用的遍历方式。
map存放值的时候通过put存放,如果key值相等的话会把之前存放的值覆盖。
查找、删除、修改通过key值进行操作。
下面是hashmap存放值的操作。
hashmap hashmap = new hashmap<>();
hashmap.put(1850312401,99.5);
hashmap.put(1850312402,99.6);
hashmap.put(1850312403,99.7);
hashmap.put(1850312404,99.8);
system.out.println(hashmap);
由于hashmap中实现了tostring方法,所以可以直接对hashmap进行输出。
遍历
hashmap遍历有两种方法。
一种是通过keyset()获取所有的set值进行遍历操作:
set doubleset = hashmap.keyset();
for (integer adouble : doubleset) {
double value = hashmap.get(adouble);
system.out.println(adouble "=" value);
}
/*iterator iterator = doubleset.iterator();
while (iterator.hasnext()){
integer adouble = iterator.next();
double value = hashmap.get(adouble);
system.out.println(adouble "===" value);
}*/
先写的使用的是foreach进行循环遍历,注释的是使用迭代器进行的遍历。
另一种是通过hashmap 的enttyset()方法,获取的返回值为set
set> entries = hashmap.entryset();
for (map.entry entry : entries){
integer key = entry.getkey();
double value = entry.getvalue();
system.out.println(key "===" value);
}
嗯,先这样。