目录 问题描述 解决方法 问题描述 背景: 在使用二维数组,获取数组的列长度时,常常会这样写 public boolean findNumberIn2DArray(int[][] matrix, int target) { int col = matrix[0].length; // 列长度 ... } 但今日在刷算法题时,却执行出错,提示如下错误 java.lang.ArrayIndexOutOfBoundsException: Index 0 out of bounds for length 0 具体:...