Array/ List Concept
What is Array/ List?
How to create a list in java? how about matrix?
// method 1
int[] array = new int[array.length]
ElementType[] arrayName = new ElementType[arrray dot length]
// method 2
int[] array = new int[]{}
int[][] matrix = new int[length_of_row][length_of_col]
ElementType[][] matrixName = new ElementType[第一维度][第二维度]
Last updated