Java字符串优化
这会创建多少个字符串?
String test(String text) {
return "string 1 " +
text + " string 2 " +
"string 3";
}
How many Strings does this create?
String test(String text) {
return "string 1 " +
text + " string 2 " +
"string 3";
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这里不存在新的 String 调用,唯一存在的调用位于 StringBuilder.toString 中,因此
1
No new String calls are present here, the only one that exists is in StringBuilder.toString, so
1
通过编译代码,然后使用 javap -c 检查字节码,可以很容易地回答这个问题。在这种特殊情况下,编译器应该生成这样的代码,
具体取决于您如何看待它,您可能会说只有一个,或者如果您是那些喜欢在使用文字时将其视为“创建”的人之一,你可以说四个。
This is pretty easy to answer by compiling the code, then inspecting the bytecode with
javap -c
. In this particular case, the compiler should generate code likeso depending on how you look at it, you might say only one, or if you're one of those people who likes to count literals as being "created" when they're used, you could say four.
javap
是你的朋友。我将您的代码放入 S.java 中,并使用 javap -c S 对其进行反汇编:在 OpenJDK 1.6.0_22 中,仅创建了一个 StringBuilder 和一个 String。
javap
is your friend. I put your code into S.java and deassembled it usingjavap -c S
:With OpenJDK 1.6.0_22 there is only one StringBuilder and one String created.
这相当于
3 个字符串生成器和 6 个字符串。优化的方法是:
this is the equivalent of
that's 3 stringbuilders and 6 strings. The way to optimize this is: