public class Test {
public static void main(String[] args) {
}
}
class Outer {
void aMethod() {
class MethodLocalInner {
void bMethod() {
System.out.println("Inside method-local bMethod");
}
}
}
}
有人可以告訴我如何打印從bMethod
消息?方法本地內部類
Thanks..realised我哪裏wrong..I把新實例行localinner課前創建。 – Omnipotent 2008-09-17 07:00:52