在Java中避免NullPointerException的一種方法是使用條件判斷來檢查變量是否為null,然后再進行操作。例如,在使用concat方法連接兩個字符串時,可以先檢查這兩個字符串是否為null,如果其中一個為null,則可以做出相應的處理。
示例代碼如下:
String str1 = "Hello";
String str2 = null;
if (str1 != null && str2 != null) {
String result = str1.concat(str2);
System.out.println(result);
} else {
System.out.println("One of the strings is null");
}
通過這種方式,可以避免在concat方法中出現NullPointerException異常。另外,還可以使用Java 8中的Optional類來處理可能為null的情況,以更加優雅地避免NullPointerException。