new boolean[] not really required when initializing.

Introducing this disrupts the flow a little bit to think, if specifying `new boolean[] ` required when intializing.
This commit is contained in:
Senthil Kumaran 2016-02-15 10:29:42 -08:00
parent 712c9f342f
commit b02cceda8b

View File

@ -175,7 +175,7 @@ public class LearnJava {
// Another way to declare & initialize an array
int[] y = {9000, 1000, 1337};
String names[] = {"Bob", "John", "Fred", "Juan Pedro"};
boolean bools[] = new boolean[] {true, false, false};
boolean bools[] = {true, false, false};
// Indexing an array - Accessing an element
System.out.println("intArray @ 0: " + intArray[0]);