在處理空值時,可以使用Map.containsKey()
方法來檢查Map中是否包含指定的鍵,避免出現空指針異常。以下是使用Map.containsKey()
處理空值的示例代碼:
Map<String, String> map = new HashMap<>();
map.put("key1", "value1");
map.put("key2", null);
String key = "key2";
if (map.containsKey(key)) {
String value = map.get(key);
if (value != null) {
System.out.println("Value for key " + key + ": " + value);
} else {
System.out.println("Value for key " + key + " is null");
}
} else {
System.out.println("Key " + key + " not found in the map");
}
在上面的示例中,首先檢查Map中是否包含指定的鍵key2
,如果存在該鍵,則再檢查對應的值是否為空。這樣可以避免空指針異常,并正確處理空值的情況。