java怎么建立映射關(guān)系

小億
118
2023-12-12 03:57:37
欄目: 編程語言

在Java中,可以使用Map接口的實(shí)現(xiàn)類來建立映射關(guān)系。常用的Map實(shí)現(xiàn)類有HashMapTreeMapLinkedHashMap。

以下是建立映射關(guān)系的一些常見操作:

  1. 創(chuàng)建一個(gè)Map對(duì)象:
Map<String, Integer> map = new HashMap<>();
  1. 添加鍵值對(duì)到映射中:
map.put("key1", 1);
map.put("key2", 2);
map.put("key3", 3);
  1. 從映射中獲取值:
int value1 = map.get("key1"); // 返回1
  1. 檢查映射中是否包含某個(gè)鍵:
boolean containsKey = map.containsKey("key1"); // 返回true
  1. 檢查映射中是否包含某個(gè)值:
boolean containsValue = map.containsValue(1); // 返回true
  1. 遍歷映射的鍵值對(duì):
for (Map.Entry<String, Integer> entry : map.entrySet()) {
    String key = entry.getKey();
    Integer value = entry.getValue();
    System.out.println(key + " = " + value);
}
  1. 刪除映射中的鍵值對(duì):
map.remove("key1");

請(qǐng)注意,Map接口允許鍵和值為null,但HashMapTreeMap不支持null鍵,LinkedHashMap除外。

0