java怎么為null設(shè)置默認(rèn)值

小億
316
2023-11-23 20:53:34
欄目: 編程語言

在Java中,可以使用條件語句來為null設(shè)置默認(rèn)值。下面是兩種常用的方法:

  1. 使用三元運(yùn)算符:
String str = null;
String defaultValue = "Default";
String result = (str != null) ? str : defaultValue;
System.out.println(result); // 輸出"Default"
  1. 使用if語句:
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變量。

0