共计 226 个字符,预计需要花费 1 分钟才能阅读完成。
在 Java 中,可以使用三元运算符来将 null 转为空字符串。三元运算符的语法是:
variable = (expression) ? value1 : value2;
如果表达式 (expression) 为真,则将 value1 赋给变量 variable;否则,将 value2 赋给变量 variable。
因此,可以使用以下代码将 null 转为空字符串:
String str = (yourVariable != null) ? yourVariable :“”;
丸趣 TV 网 – 提供最优质的资源集合!
正文完