这个是第二种, 把映射关系存到集合里, 然后取出来, 你问什么是映射关系, 就好像是户口本一样, 我只要拿到户口本, 就知道谁跟谁结婚了一样, 这就是映射关系- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.Map;
- import java.util.Set;
- public class SunJingQi {
- public static void main(String[] args) {
- Map<String, String> map = new HashMap<String, String>();
- map.put("01", "孙旌棋");
- map.put("02", "孙旌棋");
- map.put("03", "孙旌棋");
- // 取出 Map集合的映射关系,存入到Set集合
- Set<Map.Entry<String, String>> entrySet = map.entrySet();
- for (Iterator<Map.Entry<String, String>> it = entrySet.iterator(); it.hasNext();) {
- Map.Entry<String, String> me = it.next();
- String key = me.getKey();
- String value = me.getValue();
- sop(key + "=" + value);
- }
- }
- public static void sop(Object obj) {
- System.out.println(obj);
- }
- }
复制代码 |