package com.imooc.concurrent;
public class Actor extends Thread {
public void fun() {
System.out.println(getName() +"is an actor");
int count = 0;
System.out.println(getName() + "show begins"+(++count));
System.out.println(getName() +"show is over");
}
public static void main(String[] args) {
Thread actor = new Actor();
actor.setName("Mr.Thread");
actor.start();
}
}
因为是继承自Thread类,Thread类里面定义了run抽象类,父类定义的抽象类,非抽象类的字类必须实现父类定义的抽象方法。
这是父类重写的方法。