java的super(),是干嘛的,什么作用啊??如下的程序

publicclassTest{publicstaticvoidmain(String[]args){NewThreadthread1=newNewThread();Ne... public class Test
{
public static void main(String[] args)
{
NewThread thread1 = new NewThread();
NewThread thread2 = new NewThread();
thread1.start(); // start thread1
thread2.start(); // start thread2
}
}

/**
* create new thread by inheriting Thread
*/
class NewThread extends Thread {

private static int threadID = 0; // shared by all

/**
* constructor
*/
public NewThread() {
super("ID:" + (++threadID)); /////super(),是干嘛的,什么作用啊??
}

/**
* convert object to string
*/
public String toString() {
return super.getName();
}

/**
* what does the thread do?
*/
public void run() {
System.out.println(this);
}
}
//////////////
ID:1
ID:2
还有这个,return super.getName(); 什么作用啊?
展开
 我来答
百度网友44dd6f9
推荐于2018-04-19
知道答主
回答量:20
采纳率:0%
帮助的人:11万
展开全部
super("ID:" + (++threadID)); 是NewThread
类继承父类Thread类后调用其构造方法的方法即调用Thread类的构造方法

return super.getName(); 也是一样就是NewThread中的实例调用Thread类的getName()方法
lanyaoxue
2015-05-27 · TA获得超过107个赞
知道小有建树答主
回答量:198
采纳率:0%
帮助的人:78.3万
展开全部
super()代表当前类的父类 就是代表Thread类
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式