The moose likes Beginning Java and the fly likes static nested class Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "static nested class" Watch "static nested class" New topic
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
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: static nested class
 
Similar Threads
outer class name obligatory
Static Local Classes?
inner class reference
Inner class
static inner class question