先看一段代码
int a=10; int b=20; System.out.println(""+a+b); System.out.println(a+b+"");
输出结果:
1020 30
这是为什么,请大神指导?
狂神说java