In Java, can a method/constructor declaration appear inside another method/constructor declaration? Example:

void A() { 
    int B() { }
}

I think not, but I'd love to be reassured.

link|improve this question

2  
You think right. – Nikita Rybak Jan 19 '11 at 13:46
Not even for constructor inside constructor? – John Assymptoth Jan 19 '11 at 13:49
What would be the point? Constructors create instances of classes, not instances of other constructors :) – Nikita Rybak Jan 19 '11 at 13:55
1  
just a thought , what about method level inner class , which has anonyomous constructor. – Suresh Sankar Jan 19 '11 at 14:15
@Suresh S: Yeah, I am aware of that possibility. Thanks. – John Assymptoth Jan 19 '11 at 14:18
feedback

4 Answers

up vote 2 down vote accepted

No. it is not compilable.

link|improve this answer
Awarded for first answer. – John Assymptoth Jan 19 '11 at 14:17
feedback

No this is not possible. For reference: http://download.oracle.com/javase/tutorial/java/javaOO/methods.html

link|improve this answer
feedback

No, Java only allows a method to be defined within a class, not within another method.

link|improve this answer
feedback

Not directly, but you can have a method in a class in a method:

class A {
    void b() {
        class C {
            void d() {
            }
        }
    }
}
link|improve this answer
Yes, I'm aware of that possibility. +1 – John Assymptoth Jan 19 '11 at 15:43
feedback

Your Answer

 
or
required, but never shown

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