String Class
881147Sep 7 2011 — edited Sep 11 2011[code
]String name="somename";
String name1="some";
name=name1;
in this case what will happen to the name variable?the name has longer string(which means hold more stack on the memory) than name1.
also will the java resize the name or wat?can you guys explain explicitly please?
thanks.