示例:
Integer x = 42;
该快速修复会将转换设为显式:
Integer x = Integer.valueOf(42);
自动装箱在 Java 5 中出现。 此检查有助于为向后兼容早期 Java 版本而降级。