我下面有这段代码。如何初始化每个元素= false?
boolean[] seats = new boolean[10]
我看到了类似的问题。但是,第二行对我来说没有意义(您能解释第二行吗?)。
Boolean[] array = new Boolean[size]; Arrays.fill(array, Boolean.FALSE);
a中元素的默认值为boolean[]false。您不需要做任何事情。
boolean[]
之所以需要这样做Boolean[]是因为默认值为null。
Boolean[]
null
要初始化为true,使用过载的Arrays.fill一个接受boolean[]。
Arrays.fill
boolean[] seats = new boolean[10]; Arrays.fill(seats, true);
看到它在线上工作:ideone