java integer code example
Example 1: java max integer
Integer.MAX_VALUE //== 2147483647, once you increment past that, you
//"wrap around" to Integer.MIN_VALUE
Example 2: int[]
int[] array;
// is equivalent to
int array[];
Example 3: int java
boolean result = true;
char capitalC = 'C';
byte b = 100;
short s = 10000;
int i = 100000;