📅  最后修改于: 2022-03-11 14:52:23.688000             🧑  作者: Mango
int intArray[]; //declaring array
intArray = new int[10]; // allocating memory to array
intArray[0] = 10; // Adding elements to the array
System.out.println(intArray[0]); // Accessing elements of array