关于数组的一个问题~~ 临近考试了,复习的时候遇到一个问题,程序是这样的: public class Test { public static void main(String[] args) { boolean[][] x = new boolean[3][]; x[0] = new boolean[1]; x[1] = new boolean[2]; x[2] = new boolean[3]; System.out.println("x[2][2] is " + x[2][2]); } }
------解决方案-------------------- int 不赋值默认就是0, boolean不赋值默认是false..
------解决方案-------------------- new boolean[3] 这样写会产生默认值的
------解决方案--------------------