- public class MapDemo1 {
- public static void main(String [] args){
- Map<String, Integer> map = new HashMap<String, Integer>();//Map<对象,对象>
- map.put("A", 1);
- map.put("B", 2);
- System.out.println(map.get("B"));//输出2
- System.out.println(map.keySet());//输出索引值[A,B]
- map.remove("A");//删除A
- System.out.println(map.keySet());//输出索引值[B]
- System.out.println(map.size());//map的长度 和list一样
- map.clear();//删除所有
- System.out.println(map.keySet());//输出索引值[] 空索引
- Map<String,Object> map2= new TreeMap<String, Object>();//Map<对象,对象>
- Map<Object, Object> map3 =new HashMap<Object, Object>();//Map<对象,对象>
- }
- }
复制代码 |