Java Data Type Tutorial - Java Thread.getStackTrace()








Syntax

Thread.getStackTrace() has the following syntax.

public StackTraceElement [] getStackTrace()

Example

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


public class Main {

   public static void main(String[] args) {
      System.out.println(Thread.currentThread().getStackTrace()[0].getClassName());
   }
}

The code above generates the following result.