소문자 'l'로 끝나는 long 리터럴을 보고합니다. 소문자 'l'이 리터럴 '1'(숫자)과 매우 유사하므로 해당 리터럴은 혼동될 수 있습니다.

예:


  long nights = 100l;

빠른 수정을 적용한 후:


  long nights = 100L;