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 a2 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.