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)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號