JAVA多线程编程之Thread中This和Thread.CurrentThread的区别

                                                                                      JAVA多线程编程之Thread中This和Thread.CurrentThread的区别

this代表当前的线程类,,Thread.CurrentThread代表正在执行的线程,看例子就懂了:

1 自定义线程类

public class CountOperate extends Thread{
    public CountOperate(){   //构造方法
        System.out.println("CountOperate---begin");
        System.out.println("Thread.currentThread().getName()=" + Thread.currentThread().getName());//获取线程名
        System.out.println("Thread.currentThread().isAlive()=" + Thread.currentThread().isAlive()); //查看线程是否存活
        System.out.println("this.getName=" + this.getName());
        System.out.println("this.isAlive()=" + this.isAlive());
        System.out.println("CountOperate---end ");
        System.out.println("Thread.currentThread()==this :"+ (Thread.currentThread() == this));
    }
    @Override
    public void run() {
        System.out.println("run---begin");
        System.out.println("Thread.currentThread().getName=" + Thread.currentThread().getName());
        System.out.println("Thread.currentThread().isAlive()" + Thread.currentThread().isAlive());
        System.out.println("Thread.currentThread()==this :"+ (Thread.currentThread() == this));
        System.out.println("this.getName()=" + this.getName());
        System.out.println("this.isAlive()=" + this.isAlive());
        System.out.println("run --- end");
    }
}
2主函数

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

        CountOperate c = new CountOperate();    //创建自定义的线程类
        Thread t1 = new Thread(c);         //新建线程将自定义的对象传入
        System.out.println("main begin t1 isAlive=" + t1.isAlive());
        t1.setName("A");
        t1.start();
        System.out.println("main end t1 isAlive=" + t1.isAlive());

    }
}

3打印的Log为

CountOperate---begin
Thread.currentThread().getName()=main                 //主线程调用构造
Thread.currentThread().isAlive()=true                        //主线程存活
this.getName=Thread-0                                               //this代表这个线程对象CountOperate 的名字      没给定义系统默认定义Thread-0
this.isAlive()=false                                                         //这个自定义线程CountOperate 没启动  不是活动
CountOperate---end
Thread.currentThread()==this :false                         //当前运行的线程是主线程     this代表CountOperate    肯定不相等
main begin t1 isAlive=false                                        //t!没启动   为不活动状态
main end t1 isAlive=true                                             //启动为活动状态
run---begin
Thread.currentThread().getName=A                         //t1.setName("A");     t1调用的run方法    给t1设置线程的名字
Thread.currentThread().isAlive()true                       
Thread.currentThread()==this :false                        //正在运行的是t1     this还是自定义那个线程类
this.getName()=Thread-0                                         
this.isAlive()=false
run --- end

4 这里比较让人疑惑的是“this.getName() = Thread-0”,这个Thread-0是什么东西??? 
通过查看Thread源码发现,在Thread类的构造方法中,会自动给name赋值,赋值代码:

说明此时的this和Thread.currentThread()指向不是同一个线程实例

也就是说,this指向的还是new CountOperate()创建的那个线程实例,而不是new Thread(thread)创建的那个实例即t1。
实际上new Thread(thread)会将thread应用的对象绑定到一个pravite变量target上,
在t1被执行的时候即t1.run()被调用的时候,它会调用target.run()方法,也就是说它是直接调用thread对象的run方法,
再确切的说,在run方法被执行的时候,this.getName()实际上返回的是target.getName(),而Thread.currentThread().getName()实际上是t1.getName()。
5修改代码

只启动自定义的线程

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

        CountOperate c = new CountOperate();
        c.start();
    }
}

更改后的打印结果

CountOperate---begin
Thread.currentThread().getName()=main
Thread.currentThread().isAlive()=true
this.getName=Thread-0
this.isAlive()=false
CountOperate---end
Thread.currentThread()==this :false
run---begin
Thread.currentThread().getName=Thread-0
Thread.currentThread().isAlive()true
Thread.currentThread()==this :true
this.getName()=Thread-0
this.isAlive()=true
run --- end



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值