Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public class Test {
    public static void main(String[] args) {

    }
}

class Outer {
    void aMethod() {
        class MethodLocalInner {
            void bMethod() {
                System.out.println("Inside method-local bMethod");
            }
        }
    }
}

Can someone tell me how to print the message from bMethod?

share|improve this question

5 Answers

up vote 5 down vote accepted

You can only instantiate MethodLocalInner within aMethod. So do

void aMethod() {

    class MethodLocalInner {

            void bMethod() {

                    System.out.println("Inside method-local bMethod");
            }
    }

    MethodLocalInner foo = new MethodLocalInner(); // Default Constructor
    foo.bMethod();

}
share|improve this answer
Thanks..realised where I went wrong..I put the new instance line before the localinner class creation. – Omnipotent Sep 17 '08 at 7:00

Within the method aMethod after the declaration of the class MethodLocalInner you could for instance do the following call:

new MethodLocalInner().bMethod();
share|improve this answer

Why don't you just create an instance of MethodLocalInner, in aMethod, and call bMethod on the new instance?

share|improve this answer

Please read Thinking in Java

share|improve this answer

This might get you started, (I don't have anything handy to test with). Notice the modified constructor syntax:

http://java.sun.com/docs/books/tutorial/java/javaOO/nested.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.