| Author |
static nested class
|
Ajay Kumar Rana
Greenhorn
Joined: Feb 27, 2008
Posts: 13
|
|
Can we instantiate a nested static inner class with the help of an instance of outer class. For example public class Exercise1 { public static void main(String[] args){ MyOuter1 m = new MyOuter1(); MyOuter1.MyInner mi = m.new MyInner(); // is it correct??? } } class MyOuter1{ public static class MyInner{public static void foo(){}} } Why or why not?
|
 |
Peter Chase
Ranch Hand
Joined: Oct 30, 2001
Posts: 1970
|
|
DoYourOwnHomework. Don't just post your homework here. The bartenders won't answer such questions, and hopefully no-one else will, either. Show some effort, propose an answer, ask for clarification of specific points etc. Then we'll happily help.
|
Betty Rubble? Well, I would go with Betty... but I'd be thinking of Wilma.<br /> <br />#:^P
|
 |
 |
|
|
subject: static nested class
|
|
|