Java Data Type Tutorial - Java StackTraceElement .getLineNumber ()








Syntax

StackTraceElement.getLineNumber() has the following syntax.

public int getLineNumber()

Example

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


public class Main {

   public static void main(String[] args) {
      System.out.print("line number : ");
      System.out.print(Thread.currentThread().getStackTrace()[0].
      getLineNumber());
   }
}

The code above generates the following result.