Java Data Type Tutorial - Java Long.intValue()








Syntax

Long.intValue() has the following syntax.

public int intValue()

Example

In the following code shows how to use Long.intValue() method.

public class Main {
  public static void main(String[] args) {
    Long longObject = new Long("1234567");
    int i = longObject.intValue();
    System.out.println("int:"+i);

  }
}

The output: