Merge pull request #2135 from orsenthil/patch-1

new boolean[]  not really required when initializing.
This commit is contained in:
Geoff Liu 2016-02-15 14:21:25 -05:00
commit d40a48f29a

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]);