To indicate a long (64-bit) literal, append the suffix L to the literal expression. : long « Java Source And Data Type « SCJP






//By default, an integral literal is a 32-bit value. 
public class MainClass {
  public static void main(String[] argv) {
    long aLongValue = 100L;
    aLongValue = 100l; // lower case is legal but hard to read

    System.out.println(aLongValue);
  }
}








1.13.long
1.13.1.To indicate a long (64-bit) literal, append the suffix L to the literal expression.
1.13.2.Require a specific (int) cast for int n2 = 4096L