黑马程序员技术交流社区
标题:
内部类补全代码练习
[打印本页]
作者:
jekyll
时间:
2015-9-25 15:47
标题:
内部类补全代码练习
class Test2_NoNameInnerClass {
public static void main(String[] args) {
Outer.method().show();
}
}
interface Inter {
void show();
}
class Outer {
//补齐代码
public static Inter method(){
return new Inter() {
public void show() {
System.out.println("Hello World!");
}
};
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2