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.
|
In Java, can a method/constructor declaration appear inside another method/constructor declaration? Example:
I think not, but I'd love to be reassured.
| |||||||||||||||
feedback
|
|
No. it is not compilable. | |||
|
feedback
|
|
No this is not possible. For reference: http://download.oracle.com/javase/tutorial/java/javaOO/methods.html | |||
|
feedback
|
|
No, Java only allows a method to be defined within a class, not within another method. | |||
|
feedback
|
|
Not directly, but you can have a method in a class in a method:
| |||
|
feedback
|