当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Thread currentThread()用法及代码示例


线程类的 currentThread() 方法用于返回对当前正在执行的线程对象的引用。

用法

public static Thread currentThread()

返回值

它返回当前正在执行的线程。

示例

public class CurrentThreadExp extends Thread
{  
    public void run()
    {  
        // print currently executing thread 
        System.out.println(Thread.currentThread().getName());  
    }  
    public static void main(String args[])
    {  
        // creating two thread
        CurrentThreadExp t1=new CurrentThreadExp();  
        CurrentThreadExp t2=new CurrentThreadExp();  
        // this will call the run() method
        t1.start();  
        t2.start();  
    }  
}

输出:

Thread-0
Thread-1






相关用法


注:本文由纯净天空筛选整理自 Java Thread currentThread() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。