
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the difference between a String object and a StringBuffer object in java?
String class is immutable once you create an object of string you can modify its data.
The StringBuffer class is immutable, once you create a StringBuffer object you can change/modify the contents of it.
This class provides various methods to manipulate its data such as append(), delete(), insert() etc.
Advertisements