报告立即转换为
long
的
int
字面量表达式。
此类字面量表达式可以替换为等效的
long
字面量。
示例:
Long l = (long)42;
在应用快速修复后:
Long l = 42L;