在看多线程的时候,看到这个知识点,感觉需要验证一下。
一:线程自启动
1.程序
package com.jun.it.thread; public class MyThread extends Thread {
MyThread(){
System.out.println("----------");
System.out.println("name:"+Thread.currentThread().getName());
System.out.println("isActive:"+Thread.currentThread().isAlive());
System.out.println("thisName:"+this.getName());
System.out.println("thisIsActive:"+this.isAlive());
System.out.println("----------");
}
public void run(){
System.out.println("=======================");
System.out.println("name:"+Thread.currentThread().getName());
System.out.println("isActive:"+Thread.currentThread().isAlive());
System.out.println("thisName:"+this.getName());
System.out.println("thisIsActive:"+this.isAlive());
System.out.println("=======================");
}
}
测试类:
package com.jun.it.thread; public class RunMyThread {
public static void main(String[] args) {
test1();
// test2();
}
/**
* 测试一
*/
public static void test1(){
MyThread myThread=new MyThread();
myThread.setName("AA");
myThread.start();
} /**
* 测试二
*/
public static void test2(){
MyThread myThread=new MyThread();
Thread thread=new Thread(myThread);
thread.setName("BB");
thread.start();
}
}
2.效果:
3.总结
Thread.currentThread():表示当前的代码正在被谁调用。
this:只能是当前的线程,在程序中,代表是myThread。
PS:
至于thread-0:每次新new的时候,在构造函数中,会定义默认的线程名。
二:线程被作为参数传入Thread
1.程序
启动测试2
2.效果
3.总结
根据上文的说法,this代表myThread,则说明,线程没有开启。
在这个示例中,外部线程在start后启动,实际上调用的是内部线程的run方法开启的。
Thread.currentThread()与this指向了不同的线程对象,Thread.currentThread()指向的是外部的线程,表示当前方法被外部线程thread调用;this指向内部线程myThread。