StringBuilder append vs +
2022-09-03 00:55:42
这两条线有什么区别?
stringBuilder.append("Text " + counter + " more text");
stringBuilder.append("Text ").append(counter).append(" more text");
假设计数器是递增的 int,则第一行是否在每次调用时都会创建一个 String 、等,而第二行是否只创建这两个字符串一次:and ?这是正确的吗?"Text 0 more text"
"Text 1 more text"
"Text "
" more text"