报告从
String
转换为基元类型时创建的不必要的临时对象。
示例:
new Integer("3").intValue()
在应用快速修复后:
Integer.valueOf("3")