匿名内部类怎么没讲?
匿名内部类就是没有名字的内部类,它并不关注类的名字,只在使用时定义,语法格式为:Interface i = new Interface(){ public void method(){ System.out.println("匿名内部类实现接口的方式"); }};方法引用
第三季