註:希望與各位讀者相互交流,共同學習進步。 ...
1 /*--------------------------- 2 Map集合中利用keySet方法獲取所有的元素值: 3 ....keySet方法:將Map中的所有key值存入到Set集合中, 4 ....利用Set集合提供的迭代器獲取到每一個key值,再通過key值獲得相應的value值 5 ----------------------------*/ 6 7 package pack03; 8 9 import java.util.*; 10 11 public class MapDemo { 12 public static void main(String[] args) { 13 14 Map<String, String> ma = new HashMap<String, String>(); 15 16 ma.put("01", "abc01"); 17 ma.put("02", "abc02"); 18 ma.put("03", "abc03"); 19 ma.put("04", "abc04"); 20 21 //通過keySet方法得到所有的鍵值,並存入Set集合中 22 Set<String> keyset = ma.keySet(); 23 24 //通過Set集合的迭代器方法獲取到每一個鍵值,再通過鍵值得到相應的value值 25 Iterator<String> it = keyset.iterator(); 26 while( it.hasNext() ) { 27 28 String key = it.next(); 29 System.out.println( "key-" + key + " value-" + ma.get(key) ); 30 } 31 32 } 33 }
註:希望與各位讀者相互交流,共同學習進步。