package com.xiaolong.nonameclass;
//补全代码,输出helloworld
public class Demo1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Outer.method().show(); //实际上是Inner对象调用show方法
}
}
class Outer{
public static Inner method(){ //返回值为Inner类型
return new Inner(){
public void show(){
System.out.println("hello world"); //匿名内部类
}
};
}
}
interface Inner{
void show();
} |
|