KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Test74


1 class Helper {
2
3     public static void main(String JavaDoc [] args){
4     }
5
6     public void action(){
7         System.out.println("Helper");
8     }
9 }
10 public class Test74{
11
12     public static void main(String JavaDoc [] args){
13         Test74 t74 = new Test74();
14         t74.run(5);
15     }
16     
17     public void run(final int x){
18         new Helper(){
19         
20             public void action(){
21                 
22                 new Helper() {
23                     public void action(){
24                         System.out.println(x);
25
26                         new Helper(){
27                             public void action(){
28                                 System.out.println(x*x);
29                                 new Helper(){
30                                     public void action(){
31                                         System.out.println(x*x*x*x*x);
32                                     }
33                                 }.action();
34                             }
35                         }.action();
36                     }
37                 }.action();
38             }
39         }.action();
40     }
41 }
42
Popular Tags