黑马程序员技术交流社区

标题: 就是不会做啊 [打印本页]

作者: qq1175387339    时间: 2016-1-22 23:58
标题: 就是不会做啊

                按照要求,补齐代码
                interface Inter { void show(); }
                class Outer { //补齐代码 }
                class OuterDemo {
                        public static void main(String[] args) {
                                  Outer.method().show();
                          }
                }
                要求在控制台输出”HelloWorld”
作者: 李勋@1211    时间: 2016-1-23 23:08
小生拙见如下:
     class Outer {
        /*定义返回值类型为Inter的静态方法(由Outer.method()可以确定静态)method
        从调用method()后还可以再次调用show()可确定method()的此方法的返回值为一个对象
        返回什么对象呢?因为show方法是Inter接口里面的抽象方法,所以返回值类型为Inter
        接口里面的show()是抽象的。所以需要返回一个重写了show()的Inter接口的匿名实现类对象
        */
        public static Inter method(){               
                return  new Inter(){
                        public void show(){
                        System.out.println("HelloWorld");
                        }
                };
               
        }
       
}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2