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

这里的super(name)是调用父类Thread的带函数String name的构造方法 ?

这里的super(name)是调用父类Thread的带函数String name的构造方法 ?

湖上湖 2022-07-14 11:07:34
class Sleeper extends Thread{private int sleeptime;public Sleeper(String name,int sleepTime){super(name);sleeptime=sleepTime;start();
查看完整描述

3 回答

?
慕工程0101907

TA贡献1887条经验 获得超5个赞

这只是调父类的构造函数,并不是 String name的构造方法

查看完整回答
反对 回复 2022-07-18
?
动漫人物

TA贡献1815条经验 获得超10个赞

有这个方法
/**
* Allocates a new <code>Thread</code> object. This constructor has
* the same effect as <code>Thread(null, null, name)</code>.
*
* @param name the name of the new thread.
* @see #Thread(ThreadGroup, Runnable, String)
*/
public Thread(String name) {
init(null, null, name, 0);
}


查看完整回答
反对 回复 2022-07-18
?
潇湘沐

TA贡献1816条经验 获得超6个赞

public Thread(String threadName) {
if (threadName == null) {
throw new NullPointerException();
}
create(null, null, threadName, 0); }

查看完整回答
反对 回复 2022-07-18
  • 3 回答
  • 0 关注
  • 124 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信