共计 414 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用条件语句来为 null 设置默认值。下面是两种常用的方法:
- 使用三元运算符:
String str = null;
String defaultValue = "Default";
String result = (str != null) ? str : defaultValue;
System.out.println(result); // 输出 "Default"
- 使用 if 语句:
String str = null;
String defaultValue = "Default";
String result;
if (str != null) {result = str;} else {result = defaultValue;}
System.out.println(result); // 输出 "Default"
在上面的例子中,如果变量 str 为 null,则将默认值 defaultValue 赋给 result 变量。否则,将 str 的值赋给 result 变量。
丸趣 TV 网 – 提供最优质的资源集合!
正文完