ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

在Java中连接空字符串

2019-09-11 10:01:28  阅读:304  来源: 互联网

标签:java string concatenation string-concatenation


参见英文答案 > String concatenation with Null                                    3个
为什么以下工作?我希望抛出NullPointerException.

String s = null;
s = s + "hello";
System.out.println(s); // prints "nullhello"

解决方法:

为什么一定有用?

导致JLS 8, § 5.1.11 “String Conversion”JLS 5, Section 15.18.1.1 JLS 8 § 15.18.1 “String Concatenation Operator +”要求此操作成功而不会失败:

…Now only reference values need to be considered. If the reference is null, it is converted to the string “null” (four ASCII characters n, u, l, l). Otherwise, the conversion is performed as if by an invocation of the toString method of the referenced object with no arguments; but if the result of invoking the toString method is null, then the string “null” is used instead.

它是如何工作的?

我们来看看字节码吧!编译器接受你的代码:

String s = null;
s = s + "hello";
System.out.println(s); // prints "nullhello"

并将其编译为字节码,就像你写了这样:

String s = null;
s = new StringBuilder(String.valueOf(s)).append("hello").toString();
System.out.println(s); // prints "nullhello"

(您可以使用javap -c自己完成)

StringBuilder的append方法都处理null就好了.在这种情况下,因为null是第一个参数,所以调用String.valueOf(),因为StringBuilder没有采用任意引用类型的构造函数.

如果您已经完成了s =“hello”,则等效代码将为:

s = new StringBuilder("hello").append(s).toString();

在这种情况下,append方法获取null,然后将其委托给String.valueOf().

注意:字符串连接实际上是编译器决定执行哪些优化的罕见地方之一.因此,“完全等效”代码可能因编译器而异. JLS, Section 15.18.1.2允许此优化:

To increase the performance of repeated string concatenation, a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression.

我用来确定上面“等效代码”的编译器是Eclipse的编译器,ecj.

标签:java,string,concatenation,string-concatenation
来源: https://codeday.me/bug/20190911/1804638.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有