javacompiler

java literal and compiler

int i=10+20; It is true that the compiler will process this code, it adds 10 +20, and the byte code is the same as for this line of code: int i=30; ? and where can I read about it? ...