It seems reasonable to me that the compiler is going to take something like this:
log.info("A really long logger message that is kind of a pain in the tucous " +
"and violates formatting standards by making the line to long");
and compile the two Strings into one. I'm pretty sure this is true but I would like to have my ducks in a row if anyone brings it up.
int i = 40 + 2;- the compiler will compile it asint i = 42;