Java Data Type Tutorial - Java StackTraceElement.toString()








Syntax

StackTraceElement.toString() has the following syntax.

public String toString()

Example

In the following code shows how to use StackTraceElement.toString() method.

/* w  w w. jav  a 2 s .c o m*/

public class Main {

   public static void main(String[] args) {

    
         System.out.println(Thread.currentThread().getStackTrace()[0].toString());
  
   }
}

The code above generates the following result.