I am telling, if i say
[1]
String x,y,z;
x= "abc";
y="def"
z=x+y;
I will end up creating 3 string *objects* [ pls correct if it is wrong ] namely "abc" , "def", abcdef" in "String Pool".
Am I right?
[2] "String Pool" contains String *objects* right? or String *literals*?
Please validate my understanding.
thanks
chaitanya