码迷,mamicode.com
首页 > 编程语言 > 详细

多线程,获取当前线程的对象。

时间:2020-07-21 00:58:31      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:ati   system   span   ack   多线程   set   start   string   runnable   

public class Demo02 {
public static void main(String[] args) {

Test01();
new Thread(){
public void run(){
System.out.println(getName()+".......ccccccccccc");
}
}.start();
new Thread( new Runnable(){
public void run(){
//Thread.currentThread()获取当前正在执行的线程
System.out.println(Thread.currentThread().getName()+"dddddddddd");
}
}).start();
System.out.println(Thread.currentThread().getName());//获取主线程的名字
Thread.currentThread().setName("我是主线程");
System.out.println(Thread.currentThread().getName());//再次获取主线程的名字

}

多线程,获取当前线程的对象。

标签:ati   system   span   ack   多线程   set   start   string   runnable   

原文地址:https://www.cnblogs.com/wangffeng293/p/13347928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!