📌  相关文章
📜  字符串生成器与字符串缓冲区 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:04.239000             🧑  作者: Mango

代码示例6
They both mutable, they are exactly same but
String buffer is thread safe so it runs slower
than String builder.
We are using StringBuffer when we are doing parallel
testing since it is a thread safe.