String VS StringBuffer VS StringBuilder String is immutable that is if you want to change a string value another object gets created. On the other hand StringBuffer and StringBuilder are mutable they can change their values. More about String : Generally, an object...