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