- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the difference between StringBuffer and StringBuilder in java?
The StringBuffer and StringBuilder classes are used when there is a necessity to make a lot of modifications to Strings of characters.
Unlike Strings, objects of type StringBuffer and String builder can be modified over and over again without leaving behind a lot of new unused objects.
The StringBuilder class was introduced as of Java 5 and the main difference between the StringBuffer and StringBuilder is that StringBuilder’s methods do not thread safe (not synchronized).
It is recommended to use StringBuilder whenever possible because it is faster than StringBuffer. However, if the thread safety is necessary, the best option is StringBuffer objects.
- Related Articles
- What is the difference between a StringBuffer and StringBuilder in java?
- Difference between StringBuilder and StringBuffer in Java
- Difference between StringBuffer and StringBuilder.
- What is the difference between String, StringBuffer and StringBuilder classes in Java explain briefly?
- Java String, StringBuffer and StringBuilder Tutorial.
- Difference between string and StringBuffer in Java.
- What is the difference between a String object and a StringBuffer object in java?
- Difference Between String and StringBuffer Class in Java
- Difference between String class and StringBuffer class in Java
- How can we compare a StringBuilder with StringBuffer in Java?
- How to understand StringBuffer is thread-safe and StringBuilder is non-thread-safe in Java?\n
- Difference between String and StringBuffer.
- Where to use a StringBuffer/StringBuilder than a String in Java?
- Difference between String and StringBuilder in C#
- What is the difference between Java and Core Java?

Advertisements