📜  java代码示例中的stringbuffer vs stringbuilder vs string

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

代码示例4
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.