Subsections
- The StringBuffer class is often used when you need the ability to modify strings in your programs.
- Manipulating a StringBuffer can be faster than creating-re-creating String objects during heavy text manipulation.
- StringBuffer objects are mutable.
- Useful methods include append(), charAt(), indexOf(), insert(), length(), and replace().
|
|