KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ArrayTest


1 public class ArrayTest {
2
3     public static void main(String JavaDoc [] args){
4         ArrayTest a = new ArrayTest();
5         System.out.println(a.my_array[0][0]);
6     }
7     
8     public boolean [][] my_array = {
9     
10         {true, false, true},
11         {false, true, true},
12         {},
13         {},
14         {false, false, true}
15     };
16
17
18 }
19
Popular Tags