Pergunta de entrevista da empresa Deloitte

Difference between StringBuffer and StringBuilder?

Resposta da entrevista

Sigiloso

10 de mai. de 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..