CoreJava/exp5/OuterDemo.java

19 lines
362 B
Java
Raw Permalink Normal View History

2024-05-09 09:10:51 +08:00
package exp5;
interface Inter { void show(); }
class Outer1 { public static Inter method() {
return new Inter() {
@Override
public void show() {
System.out.println("HelloWorld");
}
};
}
}
class OuterDemo {
public static void main(String[] args) {
Outer1.method().show();
}
}