#遍历Map的几种方式
方法一
for (String key : map.keySet()){ |
方法二
Iterator<Map.Entry<String, String>> it = map.entrySet().iterator(); |
方法三 (推荐)
for (Map.Entry<String, String> entry : map.entrySet()) { |
方法四
for (String v : map.values()) { |
顺便把遍历proerties也说下,有点类似
初始化proerties
Properties prop = new Properties(); |
方法一:
Enumeration<String> eee = (Enumeration<String>) prop.propertyNames(); |
方法二:
Enumeration<Object> enu = prop.elements(); |
方法三:
Iterator<Entry<Object, Object>> it = prop.entrySet().iterator(); |