遍歷HashMap的四種方法

2021-06-12 08:26:56 字數 476 閱讀 6928

public static void main(string args) 

//第二種

system.out.println("通過map.entryset使用iterator遍歷key和value:");

iterator> it = map.entryset().iterator();

while (it.hasnext())

//第三種:推薦,尤其是容量大時

system.out.println("通過map.entryset遍歷key和value");

for (map.entryentry : map.entryset())

//第四種

system.out.println("通過map.values()遍歷所有的value,但不能遍歷key");

for (string v : map.values())

}

遍歷HashMap的四種方法

public static void main string args 第二種 system.out.println n通過map.entryset使用iterator遍歷key和value iterator map1it map.entryset iterator while map1it.has...

HashMap四種遍歷方式

public static void main string args 第二種,通過map.entryset system.out.println 通過map.entryset使用iterator遍歷key和value iterator ite map.entryset iterator while...

遍歷Map的四種方法

public static void main string args 第二種 system.out.println 通過map.entryset使用iterator遍歷key和value iterator it map.entryset iterator while it.hasnext 第三種 ...