dumpStack() メソッドは Thread クラスの静的メソッドであり、現在のスレッドのスタック トレースを System.err に出力または表示するために使用できます。 dumpStack() メソッドの目的は基本的にデバッグであり、メソッドは内部的に Throwable クラスの printStackTrace() メソッドを呼び出します。このメソッドは例外をスローしません。
public static void dumpStack()
public class ThreadDumpStackTest { public static void main(String args[]) { Thread t = Thread.currentThread(); t.setName("ThreadDumpStackTest"); t.setPriority(1); System.out.println("Current Thread: " + t); int count = Thread.activeCount(); System.out.println("Active threads: " + count); Thread threads[] = new Thread[count]; Thread.enumerate(threads); for (int i = 0; i < count; i++) { System.out.println(i + ": " + threads[i]); } Thread.dumpStack(); } }
Current Thread: Thread[ThreadDumpStackTest,1,main] Active threads: 1 0: Thread[ThreadDumpStackTest,1,main] java.lang.Exception: Stack trace at java.lang.Thread.dumpStack(Thread.java:1336) at ThreadDumpStackTest.main(ThreadDumpStackTest.java:14)
以上がJava で dumpStack() メソッドを使用する目的は何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。