The back-end String, StringBuilder, StringBuffer January 18, 2024 by Jivin Dasgupta No Comments 1. Speed of execution StringBuilder > StringBuffer > String 2. Thread safety StringBuilder is thread-safe, and StringBuffer is thread-safe String: Applies to a small number of String operations StringBuilder: This is suitable for large operations in the character buffer under a single thread StringBuffer: Applies to multiple threads where a large number of operations are performed in the character buffer