1、编译器自动计算
源码:
public class Test { int i = (1000+1)*5/10; }
eclipse保存生成字节码文件,并用反编译工具打开:
public class Test { int i = 500; }
2、编译器自动添加无参的构造方法