在Java中,可以使用條件語句來為null設(shè)置默認(rèn)值。下面是兩種常用的方法:
String str = null;
String defaultValue = "Default";
String result = (str != null) ? str : defaultValue;
System.out.println(result); // 輸出"Default"
String str = null;
String defaultValue = "Default";
String result;
if (str != null) {
result = str;
} else {
result = defaultValue;
}
System.out.println(result); // 輸出"Default"
在上面的例子中,如果變量str為null,則將默認(rèn)值defaultValue賦給result變量。否則,將str的值賦給result變量。