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