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);
/*w  w  w. j  av  a2s  .  c om*/
  }
}

The output:





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable