1. 程式人生 > >JavaSE8基礎 HashMap<Integer,String> entrySet遍歷 鍵值對的集合

JavaSE8基礎 HashMap<Integer,String> entrySet遍歷 鍵值對的集合

system brush 現象 image 基礎 cli 集合 eas 所有

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.Map.Entry;
import java.util.Set;

/*
 * @version V17.09
 */
public class MapDemo_1111 {
	public static void main(String[] args) {
		HashMap<Integer, String> hm = init();

		System.out.println(hm);
		
		// 獲取所有的鍵值對  對象的集合
		Set<Entry<Integer, String>> smeis= hm.entrySet();
		
		// 遍歷鍵值對 對象的集合
		for (Entry<Integer, String> entry : smeis) {
							//      鍵                                                    值
			System.out.println(entry.getKey()+" : "+entry.getValue());
		}

	}

	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> entrySet遍歷 鍵值對的集合