- class Test2_NoNameInnerClass {
- public static void main(String[] args) {
- Outer.method().show();
- }
- }
- interface Inter {
- void show();
- }
- class Outer {
- //补齐代码
- public static Inter method(){
- return new Inter() {
- public void show() {
- System.out.println("Hello World!");
- }
- };
- }
- }
复制代码 |
|