當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Thread.currentThread()用法及代碼示例



描述

這個java.lang.Thread.currentThread() 方法返回對當前正在執行的線程對象的引用。

聲明

以下是聲明java.lang.Thread.currentThread()方法

public static Thread currentThread()

參數

NA

返回值

此方法返回當前正在執行的線程。

異常

NA

示例

下麵的例子展示了 java.lang.Thread.currentThread() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class ThreadDemo implements Runnable {

   ThreadDemo() {
      // main thread
      Thread currThread = Thread.currentThread();
      
      // thread created
      Thread t = new Thread(this, "Admin Thread");
   
      System.out.println("current thread = " + currThread);
      System.out.println("thread created = " + t);
      
      // this will call run() function
      t.start();
   }

   public void run() {
      System.out.println("This is run() method");
   }

   public static void main(String args[]) {
      new ThreadDemo();
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

current thread = Thread[main,5,main]
thread created = Thread[Admin Thread,5,main]
This is run() method

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Thread.currentThread() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。