📅  最后修改于: 2022-03-11 14:49:06.009000             🧑  作者: Mango
int[] tableName = new int[4]; // Create a int table of 4 entity.
int[] tableName2 = {10, 20, 30, 40}; // Create a int table with undefined number of entity, this one gonna have 4 : (10, 20, 30, 40).
tableName2[0] = 10;
tableName2[1] = 20;