赞
踩
接口Map有两个实现类其中Hashtable完全实现了Map中的抽象方法,而抽象类AbstractMap只部分实现了接口Map中的抽象方法。接口SortedMap继承自Map。Hashtable有一个重要的子类Properties。HashMap继承自AbstractMap,LinkedHashMap继承自HashMap,并且这两个类都直接实现了Map接口。
Map集合基于 键(key)/值(value)映射。每个键最多只能映射一个值。键可以是任何引用数据类型的值,不可重复;值可以是任何引用数据类型的值,可以重复;键值存放无序。
1、HashMap:允许使用 null 值和 null 键;此类不保证映射的顺序;在多线程操作下不安全
2、LinkedHashMap:基于哈希表和链接列表的实现类;具有可预知的迭代顺序(双重链接表的有序性)
3、Properties:Hashtable的一个子类;属性列表中每个键及其对应值都是一个字符串;在多线程操作下安全
put(K key, V value) :将键(key)/值(value)映射存放到Map集合中。key和value不能使用基本数据类型,但可以使用其对应的包装类(byte-Byte short-Short int-Integer float-Float double-Double boolean-Boolean char-Character)
get(Object key) :返回指定键所映射的值,没有该key对应的值则返回 null。
size():返回Map集合中数据数量。
代码示例如下:
- package map;
-
- import java.util.HashMap;
-
- public class Test {
- public static void main(String[] args) {
- HashMap<String,Integer> map = new HashMap<String,Integer>();
- map.put("Tom", 100);
- int score = map.get("Tom");
- System.out.println(score);
- System.out.println(map.size());
- }
- }
- import java.util.Set;
-
- public class Test {
- public static void main(String[] args) {
- HashMap<String,Integer> map = new HashMap<String,Integer>();
- map.put("Tom", 100);
- int score = map.get("Tom");
- map.put("Tom", 0);
- System.out.println(map.get("Tom"));//HashMap不允许key值重复,否则会覆盖已有的key对应的值
- System.out.println(map.size());
- }
- }
clear():清空Map集合。
isEmpty () :判断Map集合中是否有数据,如果没有则返回true,否则返回false。
- package map;
-
- import java.util.HashMap;
-
- public class Test {
- public static void main(String[] args) {
- HashMap<String,Integer> map = new HashMap<String,Integer>();
- map.put("Tom", 100);
- System.out.println(map.size());
- map.clear();
- System.out.println(map.size());
- System.out.println(map.isEmpty());
- }
- }
由程序运行结果可知,执行clear()后,Map集合中的元素个数为0个,此时调用isEmpty()方法,返回值为true。
remove(Object key):删除Map集合中键为key的数据并返回其所对应value值。
- package map;
-
- import java.util.Collection;
- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.Map.Entry;
- import java.util.Set;
-
- public class Test {
- public static void main(String[] args) {
- HashMap<String,Integer> map = new HashMap<String,Integer>();
- map.put("Tom", 100);
- int score = map.get("Tom");
- score = map.remove("Tom");
- System.out.println(score);
- System.out.println(map.isEmpty());
- }
- }
values() :返回Map集合中所有value组成的以Collection数据类型格式数据。
- package map;
-
- import java.util.Collection;
- import java.util.HashMap;
-
- public class Test {
- public static void main(String[] args) {
- HashMap<String,Integer> map = new HashMap<String,Integer>();
- map.put("Tom", 100);
- map.put("Lucy", 90);
- map.put("Jim", 91);
- Collection<Integer> con = map.values();
- for (Integer score : con) {
- System.out.println(score);
- }
- }
- }
程序将Map集合中所有value返回到以Collection类型的集合中,并用加强for循环输出。
keySet():返回Map集合中所有key组成的Set集合。
- package map;
-
- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.Set;
-
- public class Test {
- public static void main(String[] args) {
- HashMap<String,Integer> map = new HashMap<String,Integer>();
- map.put("Tom", 100);
- map.put("Lucy", 90);
- map.put("Jim", 91);
- Set<String> set = map.keySet();
- for (String key : set) {
- System.out.println(key+" "+map.get(key));
- }
- System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~");
- Iterator<String> iterator= set.iterator();
- while(iterator.hasNext()) {
- String key = iterator.next();
- System.out.println(key+" "+map.get(key));
- }
- }
- }
调用keyset()方法,返回Map集合中所有key组成的Set集合。分别利用加强for循环和迭代器遍历set集合的同时也遍历Map集合,输出key和value。
entrySet():将Map集合每个key-value转换为一个Entry对象并返回由所有的Entry对象组成的Set集合。
- package map;
-
- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.Map.Entry;
- import java.util.Set;
-
- public class Test {
- public static void main(String[] args) {
- HashMap<String,Integer> map = new HashMap<String,Integer>();
- map.put("Tom", 100);
- map.put("Lucy", 90);
- map.put("Jim", 91);
- Set<Entry<String,Integer>> set = map.entrySet();
- for (Entry<String, Integer> entry : set) {
- System.out.println(entry.getKey()+" "+entry.getValue());
- }
- System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~");
- Iterator<Entry<String,Integer>> iterator = set.iterator();
- while(iterator.hasNext()) {
- Entry<String,Integer> entry = iterator.next();
- System.out.println(entry.getKey()+" "+entry.getValue());
- }
- }
- }
调用entrySet()方法,将Map集合每个key-value转换为一个Entry对象并返回由所有的Entry对象组成的Set集合。分别利用加强for循环和迭代器遍历set集合的同时也遍历Map集合,调用Entry类里面的getkey()和getvalue()方法,输出Map集合中的key和value的值。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。