JavaSE8基礎 HashMap<Integer,String> keySet遍歷 根據鍵找值
阿新 • • 發佈:2017-09-15
集合遍歷 ger images eas 學習 有趣的 png ips itcast
os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
code:
package jizuiku0; import java.util.HashMap; import java.util.Set; /* * @version V17.09 */ public class MapDemo_1110 { public static void main(String[] args) { HashMap<Integer, String> hm = init(); System.out.println(hm); // 以Set<Integer>的形式獲取所有的鍵 Set<Integer> set = hm.keySet(); // 增強型for循環對Set集合遍歷 for (Integer i : set) { // 鍵 鍵所對應的值 System.out.println(i + " : " + hm.get(i)); } } public static HashMap<Integer, String> init() { HashMap<Integer, String> hm = new HashMap<Integer, String>(); // 這裏的鍵 在添加時是亂序的,然而在輸出時 會有一個很有趣的現象 // 要想知道這個現象背後的原因,就必須了解底層的代碼實現 // 所謂 玄之又玄,眾妙之門 hm.put(1, "北鬥第一陽明貪狼太星君"); hm.put(2, "北鬥第二陰精巨門元星君"); hm.put(5, "北鬥第五丹元廉貞罡星君"); hm.put(6, "北鬥第六北極武曲紀星君"); hm.put(7, "北鬥第七天衛破軍關星君"); hm.put(3, "北鬥第三福善祿存真星君"); hm.put(4, "北鬥第四玄冥文曲紐星君"); hm.put(8, "北鬥第八左輔洞明星君"); hm.put(9, "北鬥第九右弼隱光星君"); return hm; } }
result:
Java優秀,值得學習。
學習資源:itcast和itheima視頻庫。如果您有公開的資源,可以分享給我的話,用您的資源學習也可以。
博文是觀看視頻後,融入思考寫成的。博文好,是老師講得好。博文壞,是 給最苦 沒認真。
JavaSE8基礎 HashMap<Integer,String> keySet遍歷 根據鍵找值