创建方式:
父类 引用名=new 父类(){
重写父类方法
}
示例:
class T018 {
public void run() {
System.out.println("hello world");
}
}
public class Test018 {
public static void main(String[] args) {
// 匿名子类的实例创建
T018 t2 = new T018() {
// 覆写父类方法
public void run() {
System.out.println("hello RUN");
}
};
t2.run();
T018 t = new T018();
t.run();
}
}