java中keyset的用途有哪些

小億
158
2024-05-08 16:43:53

在Java中,keySet()方法返回一個(gè)包含Map中所有key的Set集合,可以用于以下幾種用途:

  1. 遍歷Map:可以通過(guò)keySet()方法獲取Map中所有的key,然后遍歷key集合,再通過(guò)key獲取對(duì)應(yīng)的value。
Map<String, Integer> map = new HashMap<>();
map.put("A", 1);
map.put("B", 2);

Set<String> keySet = map.keySet();
for(String key : keySet) {
    System.out.println("Key: " + key + ", Value: " + map.get(key));
}
  1. 刪除Map中的元素:可以通過(guò)keySet()方法獲取所有的key,然后根據(jù)key刪除對(duì)應(yīng)的元素。
Map<String, Integer> map = new HashMap<>();
map.put("A", 1);
map.put("B", 2);

Set<String> keySet = map.keySet();
keySet.remove("A");
System.out.println(map); // 輸出:{B=2}
  1. 判斷Map中是否包含某個(gè)key:可以通過(guò)keySet()方法返回的Set集合中的contains()方法來(lái)判斷Map中是否包含某個(gè)key。
Map<String, Integer> map = new HashMap<>();
map.put("A", 1);
map.put("B", 2);

Set<String> keySet = map.keySet();
System.out.println(keySet.contains("A")); // 輸出:true

0