Sunday, November 19, 2017

Mutable vs Immutable

Mutable means can change and Immutable means can not change

string is immutable means whenver we assign a new value, a new string object is created in memory.


Stringbuilder is immutable, we can modify using different methods like append etc.

No comments:

Post a Comment