Thread.getStackTrace() has the following syntax.
public StackTraceElement [] getStackTrace()
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.