标签:http ar sp ad ef bs new as tt
就是一个键值对应的集合
HashMap a = new HashMap();
a.put("name", "abcdef"); // key是name,value是字符串abcdef
System.out.println(a.get("name"));// 根据key取得其值并输出
List list = new ArrayList();
list.add(a); // 加入1题所创建的hashmap
a = new HashMap(); // 创建另一个hashmap
a.put("name", "123456");//key是name,value是字符串123456
list.add(a);// 加入另一个hashmap
转自 pj1990zp 百度知道
标签:http ar sp ad ef bs new as tt
原文地址:http://www.cnblogs.com/znbee/p/4020749.html