Массивы и коллекции / Массивы

int[] numbers = { 123 };
int length = numbers.length;
//length is 3

System.out.println("length is " + length);