What is the difference between string and string buffer in java? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 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 ответ
+ 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