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


Java Thread dumpStack()用法及代碼示例


線程類的 dumpStack() 方法將當前線程的堆棧跟蹤打印到標準錯誤流。它僅用於調試。

用法

public static void dumpStack()

返回

此方法不返回任何值。

示例

public class JavaDumpStackExp 
{
    public static void main(String[] args) 
    {
        Thread thread = Thread.currentThread();
        thread.setName("My ThreadDumpStack");

        // set thread priority to 6
        thread.setPriority(6);
        // prints the current thread
        System.out.println("Current thread:" + thread);
    
        int count = Thread.activeCount();
        System.out.println("currently active threads:" + count);

        // prints a stack trace of the current thread to the standard error stream, used for debugging 
        Thread.dumpStack();
   }
}

輸出:

Current thread:Thread[My ThreadDumpStack,6,main]
currently active threads:1
java.lang.Exception:Stack trace
	at java.lang.Thread.dumpStack(Thread.java:1336)
	at javatpoint.java.JavaDumpStackExp.main(JavaDumpStackExp.java:19)






相關用法


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