1
Reply

What is the difference between string and string Builder?

Pooja Singh

Pooja Singh

Jul 08, 2016
227
0

    String- string is immutable, immutable means if you create string object then you cannot modified it always create new object of string type in memory. String Builder-it is mutable means if create string Builder object then you can perform any operation like insert, replace, or append without creating new instance for every time.

    Pooja Singh
    July 08, 2016
    0