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(); } }