InterviewSolution
Saved Bookmarks
| 1. |
Why is StringBuffer called mutable? |
|
Answer» The String class is considered as immutable, so that once it is created a String object cannot be changed. If there is a necessity to make alot of modifications to Strings of characters then StringBuffer should be used. |
|