Java Thread.dumpStack()

Syntax

Thread.dumpStack() has the following syntax.

public static void dumpStack()

Example

In the following code shows how to use Thread.dumpStack() method.


//from  w w w  . java 2 s  . com
public class Main {

   public static void main(String[] args) {

     Thread t = Thread.currentThread();
     t.setName("java2s.com thread");
     
     System.out.println("Thread = " + t);
    
     int count = Thread.activeCount();
     System.out.println("currently active threads = " + count);
    
     Thread.dumpStack();
   }
}




















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable