黑马程序员技术交流社区

标题: 分享 [打印本页]

作者: 沙漠中的狼    时间: 2016-5-6 21:24
标题: 分享
class Demo10_7 {
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("HelloWord!");
   }
  };
}
}






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