| Author |
static inner class constructor
|
Gary Kevin
Ranch Hand
Joined: Jul 24, 2006
Posts: 43
|
|
it compiles well,if i write a constructor for class BigOuter like this: it still compiles well,I can't use the constructor like this: why?
|
SCJP 5.0 72%
|
 |
Mintoo kumar
Ranch Hand
Joined: Aug 21, 2007
Posts: 61
|
|
try to explore on static (which related to class not an object). And remove static from inner class then check the code. i am sure you will get difference and answer itself. ______________ Mintoo SCJP 1.4 _____________
|
 |
Seetharaman Venkatasamy
Ranch Hand
Joined: Jan 28, 2008
Posts: 5575
|
|
Hi, i think this will help you ------------------------------- BigOuter.Nest n = new Nest(); n.go(); -------------------------------- thanks & regards, seetharaman.v
|
 |
 |
|
|
subject: static inner class constructor
|
|
|