黑马程序员技术交流社区

标题: 匿名内部类 [打印本页]

作者: 吖玮    时间: 2016-5-10 09:36
标题: 匿名内部类
        interface Inter {
                        void show();
                }
               
                class Outer {
                        //补齐代码
                        public static Inter method() {
                                return new Inter() {
                                        public void show() {
                                                System.out.println("HelloWorld");
                                        }       
                                };
                        }
                }
               
                class OuterDemo {
                        public static void main(String[] args) {
                                Outer.method().show(); //"HelloWorld"
                        }
                }




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