99re热这里只有精品视频,7777色鬼xxxx欧美色妇,国产成人精品一区二三区在线观看,内射爽无广熟女亚洲,精品人妻av一区二区三区

Entry

2019-06-27 19:57 更新

Entry 可以用于遍歷Map,以HashMap為例:

HashMap<String, Integer> hashMap = new HashMap<>();
hashMap.put("a", 1);
hashMap.put("b", 2);
hashMap.put("c", 3);
Set<Entry<String, Integer>> eSet = hashMap.entrySet();
for(Entry<String, Integer> entry : eSet) {
    System.out.println(entry.getKey() + ": " + entry.getValue());
}
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)