Difference between StringBuilder and StringBuffer

后端 未结 30 2395
独厮守ぢ
独厮守ぢ 2020-11-21 15:06

What is the main difference between StringBuffer and StringBuilder? Is there any performance issues when deciding on any one of these?

30条回答
  •  粉色の甜心
    2020-11-21 15:40

    String is an immutable.

    StringBuffer is a mutable and synchronized.

    StringBuilder is also mutable but its not synchronized.

提交回复
热议问题