int[] arr; // declares a variable arr with a type of int array. Instantiation. arr = new int[5]; // create an array of 5 integers. All at Once. int[] arr = new ...
確定! 回上一頁