Convert long value to byte, double, float, int, long, short
byte byteValue()
- Returns the value of this Long as a byte.
double doubleValue()
- Returns the value of this Long as a double.
float floatValue()
- Returns the value of this Long as a float.
int intValue()
- Returns the value of this Long as an int.
long longValue()
- Returns the value of this Long as a long value.
short shortValue()
- Returns the value of this Long as a short.
public class Main {
public static void main(String[] args) {
Long longObject = new Long("1234567");
byte b = longObject.byteValue();
System.out.println("byte:"+b);
short s = longObject.shortValue();
System.out.println("short:"+s);
int i = longObject.intValue();
System.out.println("int:"+i);
float f = longObject.floatValue();
System.out.println("float"+f);
double d = longObject.doubleValue();
System.out.println("double:"+d);
long l = longObject.longValue();
System.out.println("long:"+l);
}
}
The output:
byte:-121
short:-10617
int:1234567
float1234567.0
double:1234567.0
long:1234567
Home
Java Book
Essential Classes
Java Book
Essential Classes
Long:
- Long class
- Constants value from Long class
- Constructors from Long
- Convert long value to byte, double, float, int, long, short
- Decode a string to create long value
- Get the long value from a system property
- Compare two long values
- Parse long value from string
- Convert long value to binary, hex and octal format strings
- Convert long value to string
- Get the sign of the long value
- Get the number of zero bits preceding and following
- Reverse and rotate a long value