Java Thread dumpStack() method

21 Mar 2025 | 1 min read

The dumpStack() method of thread class prints a stack trace of the current thread to the standard error stream. It is used only for debugging.

Syntax

Return

This method does not return any value.

Example

Output:

 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 TpointTech.java.JavaDumpStackExp.main(JavaDumpStackExp.java:19)