1. 程式人生 > 其它 >Web介面開發框架DevExtreme v21.2 - HTML/Markdown 編輯器升級

Web介面開發框架DevExtreme v21.2 - HTML/Markdown 編輯器升級

Map.entrySet() 這個方法返回的是一個Set<Map.Entry<K,V>>,Map.Entry 是Map中的一個介面,他的用途是表示一個對映項(裡面有Key和Value),而Set<Map.Entry<K,V>>表示一個對映項的Set。Map.Entry裡有相應的getKey和getValue方法,即JavaBean,讓我們能夠從一個項中取出Key和Value。
下面是遍歷Map的四種方法:

public static void main(String[] args) {
  
  Map<String, String> map = new
HashMap<String, String>(); map.put("1", "value1"); map.put("2", "value2"); map.put("3", "value3"); //第一種:普遍使用,二次取值 System.out.println("通過Map.keySet遍歷key和value:"); for (String key : map.keySet()) { System.out.println("key= "+ key + " and value= " + map.get(key)); } //第二種 System.out.println("通過Map.entrySet使用iterator遍歷key和value:"); Iterator
<Map.Entry<String, String>> it = map.entrySet().iterator(); while (it.hasNext()) { Map.Entry<String, String> entry = it.next(); System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue()); } //第三種:推薦,尤其是容量大時 System.out.println("通過Map.entrySet遍歷key和value");
for (Map.Entry<String, String> entry : map.entrySet()) { System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue()); } //第四種 System.out.println("通過Map.values()遍歷所有的value,但不能遍歷key"); for (String v : map.values()) { System.out.println("value= " + v); } }