示例:
int x = new Integer(42);
快速修复使得转换显式化:
int x = new Integer(42).intValue();
Java 1.4 和更早版本的 JVM 不支持自动装箱转换。