KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > T165r1


1
2 class T165r1 {
3     T165r1(int j) {}
4     public static void main(String JavaDoc[] args) {
5         final int i;
6         new T165r1(i = 1) {
7             { System.out.print(i); }
8         };
9     }
10 }
11
Popular Tags