Search code examples
javastringbuilderstringbuffer

Difference between StringBuilder and StringBuffer


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


Solution

  • StringBuffer is synchronized, StringBuilder is not.