StringBuffer
- 22nd Dec 2017
- 0
- 11802
- how to use append() method length() method in stringbuffer replace() method in stringbuffer reverse() method in stringbuffer String buffer with example in java stringbuffer constructors in java stringbuffer methods in java
StringBuffer class in java is used to create thread safe mutable string. Mutable string means we can modify the string as many times as we want without creating a new string for each modification. This way we can save lot of memory. We know that String is immutable, when we do lot of modification to […]