86
Java Thread dumpStack() method
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 TutorAspire .java.JavaDumpStackExp.main(JavaDumpStackExp.java:19)
Next TopicMultithreading Java