为什么在字符串输出中出现空值?

当我执行以下代码时,输​​出为“ nullHelloWorld”。Java如何处理null?

import java.util.*;

import java.lang.*;

import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */

class Ideone

{

public static void main (String[] args) throws java.lang.Exception

{

String str=null;

str+="Hello World";

System.out.println(str);

}

}

回答:

您正在尝试将值连接到null。这由“字符串转换”控制,当一个操作数是a时发生,该转换String被JLS的5.1.11节覆盖:

现在只需要考虑参考值:

  • 如果引用为null,则将其转换为字符串“ null”(四个ASCII字符n,u,l,l)。

以上是 为什么在字符串输出中出现空值? 的全部内容, 来源链接: utcz.com/qa/399413.html

回到顶部