Deloitte interview question

Difference between StringBuffer and StringBuilder?

Interview Answer

Anonymous

10 May 2021

StringBuffer operations are threadsafe and synchronized whereas StringBuilder is the opposite. StringBuffer is used when multiple threads are working on same string where as StringBuilder is in single-threaded environment..