For instance
String s = \"Hello\" + \" World\";
I know there are two strings in the pool \"Hello\" and \"World\" but, does: \"Hello World\
I believe in the first case the compiler will be clever and put the concatenated string in the pool (i.e. you'll have only 1 string there)