匿名类
Demo a=new Demo() { //定义了一个匿名类 void method(){ System.out.println("from anonymous"); } }; a.method(); }