报告以小写 'l' 结尾的 long 字面量。 这些字面量可能令人困惑,因为小写的 'l' 与字面量 '1'(一)非常相似。

示例:


  long nights = 100l;

在应用快速修复后:


  long nights = 100L;