不全代码 interface Inter(){void show();} class Outer{补全代码} class OuterDemo{ public static void main(String[] args){ Outer.method().show(); } } 打印台:Hello World class Outer{ public static Inter method(){ return new Inter(){public void show(){System,out,println("Hello World")}} } }