补全代码。 (1)已知有一个接口Infer,定义如下 interface Inter{ void show();//默认修饰符为public abstract } (2)按Outer类中提示补全代码 class Outer{ //根据下面的OuterDemo测试类的方法调用和输出结果,补全Outer类中的代码使测试类中的输出成立。 } public class OuterDemo { public static void main(String[] args) { Outer.method().show();//输出HelloWorld } }