+= 是否比 concat 更有效?
2022-09-03 09:54:47
我一直在阅读团队中其他开发人员生成的代码,他们似乎更喜欢使用字符串串联,而我更喜欢使用,因为它感觉更容易阅读。+=
.concat()
我试图准备一个关于为什么使用更好的论点,我想知道,两者之间的效率有什么区别吗?.concat()
我们“应该”采取哪种选择?
public class Stuff {
public static void main(String[] args) {
String hello = "hello ";
hello += "world";
System.out.println(hello);
String helloConcat = "hello ".concat("world");
System.out.println(helloConcat);
}
}