Long.intValue() has the following syntax.
public int intValue()
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: