黑马程序员技术交流社区
标题:
补全代码 , 打印输出 面试 这个怎么搞???
[打印本页]
作者:
yaolv7
时间:
2016-4-11 20:47
标题:
补全代码 , 打印输出 面试 这个怎么搞???
本帖最后由 yaolv7 于 2016-4-11 20:46 编辑
public class OtuerTest {
public static void main(String[] args) {
Outer.method().show();
}
}
interface Inter {
void show();
}
class Outer {
//补全代码 , 打印输出 面试 这个怎么搞???
}
复制代码
作者:
15614014298
时间:
2016-4-11 21:04
public static Inter method(){
return new Inter(){
public void show(){
}
};
}
因为你Outer是内部类,如果内有静态的方法那么该类一定也要是静态的,所以Outer也要用static修饰才可
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2