Difference between StringBuffer and StringBuilder class

Some Java Guy picture Some Java Guy · Jan 25, 2011 · Viewed 8.2k times · Source

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

Answer