Java Data Type Tutorial - Java StackTraceElement .getClassName ()








Syntax

StackTraceElement.getClassName() has the following syntax.

public String getClassName()

Example

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


public class Main {

   public static void main(String[] args) {
      System.out.print("class name : ");
      System.out.print(Thread.currentThread().getStackTrace()[0].getClassName());
   }
}

The code above generates the following result.