| Author |
inner classes
|
pallavi utukuri
Ranch Hand
Joined: Feb 10, 2004
Posts: 182
|
|
can any1 explain y does the below code throw StackOverflowError??? where as if line 1 is removed everything goes well! Code tags and a few spacers added - Barry [ April 11, 2004: Message edited by: Barry Gaunt ]
|
Thanks,<br />Pallavi
|
 |
Raj Chila
Ranch Hand
Joined: Mar 18, 2004
Posts: 125
|
|
isnt it that you are initializing the inner class within the Inner class inn1? because this is a variable which is initialized every time you create a new instance of inn1...it will be a cycle that never ends and hence the runtime exception... comment the line inn1 z= new inn1(); and uncomment the //1 line and it will work fine [ April 11, 2004: Message edited by: RajaniKanth Bhargava ]
|
 |
pallavi utukuri
Ranch Hand
Joined: Feb 10, 2004
Posts: 182
|
|
ys ur logic makes sense thannks
|
 |
 |
|
|
subject: inner classes
|
|
|