What is the difference between string and string buffer in java? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the difference between string and string buffer in java?

30th Jul 2017, 2:46 PM
santhosh kumar s
santhosh kumar s - avatar
1 Answer
+ 5
String and StringBuffer both are the classes which operate on strings. StringBuffer class is the peer class of the class String. The object of  String class is of fixed length. The object of the StringBuffer class is growable. The basic difference between String and StringBuffer is that the object of the “String” class is immutable. The object of the class “StringBuffer” mutable.
30th Jul 2017, 4:23 PM
Gregor Duff
Gregor Duff - avatar