Answers for "Difference betweeen StringBuffer and StringBuilder"

1

stringbuffer vs stringbuilder vs string in java

The StringBuffer and StringBuilder class both produces mutable string objects.
 The main difference between them is that StringBuffer is thread safe;
 StringBuilder is not thread safe.
String is immutable and thread safe.
We are using StringBuffer when we are doing parallel
testing since it is a thread safe.
Posted by: Guest on January-05-2021
0

difference between string vs stringbuffer

The main similarity between String and StringBuffer class is that both are 
thread safe.
The main difference is that String is immutable; StringBuffer is mutable.
Posted by: Guest on December-05-2020

Code answers related to "Difference betweeen StringBuffer and StringBuilder"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language