标签: java types
例如,我有这段代码:
int a = 2; long b = 3; a = a + b;//Error while compilation a += b;//Normaly fineshes
这两条指令有什么区别,因为我在面试问题清单中看到了这些问题?