什么时候编译器不隐式使用 StringBuffer/StringBuilder?
我听说编译器(或者是 JVM?)会自动使用 StringBuilder 进行某些字符串连接。什么时候是明确声明的合适时间?我不需要 StringBuffer 来保证线程安全。
谢谢。
I've heard that the compiler (or was it the JVM?) will automatically use a StringBuilder for some string concatenation. When is the right time to explicitly declare one? I don't need a StringBuffer for being thread-safe.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编译器将自动使用它来进行任何使用“+”的字符串连接。
如果您想在循环中连接,通常会显式使用它。例如:
另一种情况是您想要通过多种方法构建字符串,或者可能条件化构建的某些部分。基本上,如果您不是在单个语句中构建字符串(编译器可以帮助您),您至少应该考虑使用
StringBuilder
。The compiler will use it automatically for any string concatenation using "+".
You'd usually use it explicitly if you wanted to concatenate in a loop. For example:
Another situation would be where you wanted to build up a string over multiple methods, or possibly conditionalise some bits of the building. Basically, if you're not building the string in a single statement (where the compiler can help you) you should at least consider using
StringBuilder
.