标签:ring nta 存储 get java 一个 键值 nsvalue contains
Map: Map<Integer,String> m =new HashMap<>(); //要增加泛型
Map<Integer,String> m2=new HashMap<>();
m.put(1, "ad");
m.put(2,"tow");
m.put(3,"three");//存储键值对
m2.put(4, "four");
m2.put(5, "five");
m.get(1); //取出键对应的值
m.size(); //返回键值对个数
m.isEmpty(); //Map是否为空
m.containsKey(2); //是否包含指定的键
m.containsValue("ad"); //是否包含指定的值
m.putAll(m2); //将第二个Map全部加入第一个Map
System.out.println(m); //打印结果:{1=ad, 2=tow, 3=three, 4=four, 5=five}
标签:ring nta 存储 get java 一个 键值 nsvalue contains
原文地址:https://blog.51cto.com/14437184/2421268