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

thread(this, ThreadName)对于Java中这个语句,this是什么?

thread(this, ThreadName)对于Java中这个语句,this是什么?

aluckdog 2019-03-20 18:19:25
就拿这个程序为例。public class GetCurrentThread implements Runnable {Thread th;public GetCurrentThread(String threadName) {th = new Thread(this,threadName); //<----DOUBTSystem.out.println("get threadname "+th.getName());th.start();}public void run() {System.out.println(th.getName()+" is starting.....");System.out.println("Current thread name : " + Thread.currentThread().getName());}public static void main(String args[]) {System.out.println("Current thread name : " + Thread.currentThread().getName());new GetCurrentThread("1st Thread");//new GetCurrentThread("2nd Thread");}}
查看完整描述

2 回答

?
肥皂起泡泡

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

Thread要的不是this,它要一个Runnable,在你的代码里,刚好this是一个Runnable,所以就这么写了。


查看完整回答
反对 回复 2019-04-15
  • 2 回答
  • 0 关注
  • 1083 浏览

添加回答

举报

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