19 lines
362 B
Java
19 lines
362 B
Java
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();
|
|
}
|
|
}
|