黑马程序员技术交流社区
标题:
局部内部类
[打印本页]
作者:
何亚辉
时间:
2016-5-12 20:29
标题:
局部内部类
interface Inter {
void show();
}
class Outer {
public static Inter method(){
return new Inter(){
public void show(){
System.out.println("HelloWorld");
}
};
}
}
class Father {
public static void main(String[] args){
Outer.method().show();
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2