黑马程序员技术交流社区

标题: 面试题 [打印本页]

作者: cxl1694095035    时间: 2016-5-13 11:19
标题: 面试题
package com.heima;

public class Test1_匿名内部类 {
        /*
         * 按照要求补齐代码
         */
        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("helloworld");
                        }
                };
               
        }
}




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