为了账号安全,请及时绑定邮箱和手机立即绑定

为什么方法名字叫做run呢 改成fun就不调用了

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();

}


}


正在回答

2 回答

因为是继承自Thread类,Thread类里面定义了run抽象类,父类定义的抽象类,非抽象类的字类必须实现父类定义的抽象方法。

0 回复 有任何疑惑可以回复我~
#1

慕神1905738 提问者

非常感谢!
2016-10-22 回复 有任何疑惑可以回复我~

这是父类重写的方法。

0 回复 有任何疑惑可以回复我~
#1

慕神1905738 提问者

谢谢^-^
2016-10-22 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么方法名字叫做run呢 改成fun就不调用了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信