提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示不全代码
interface Inter(){void show();}
class Outer{补全代码}
class OuterDemo{
public static void main(String[] args){
Outer.method().show();
}
}打印台:Hello Worldclass Outer{
public static Inter method(){
return new Inter(){public void show(){System,out,println("Hello World")}}
}}