摘要: 1.int[][]是嵌套数组,即数组的数组,只能算是一维数组,可以理解为一维数组的值为数组,且作为值的数组长度不必统一,如下: int[][] a=new int[][] { new int[3] {0,0,0 }, new int[4]{12,13,1,2 } }; 如上数组,数组长度为2,仅包含 阅读全文
posted @ 2023-10-10 15:07 txwtech 阅读(628) 评论(0) 推荐(0)