数组和集合 / 数组

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

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