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