Java String
is immutable, String
will Store the value in the form of object. so if u assign the value String a="a";
it will create an object and the value is stored in that and again if you are assigning value a="ty"
means it will create an another object store the value in that, if you want to understand clearly, check the has code
for the String
.