Convert long value to primitive types

In this chapter you will learn:

  1. How to Convert long value to byte, double, float, int, long, short

Convert long value to byte, double, float, int, long, short

Long class has the following methods for converting long type value to other primitive types.

  • 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.

The code below creates a long type value from string and then converts it other primitive types.

public class Main {
  public static void main(String[] args) {
    Long longObject = new Long("1234567");
    byte b = longObject.byteValue();
    System.out.println("byte:"+b);
/*from   j  av a2 s  . c  o m*/
    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:

Next chapter...

What you will learn in the next chapter:

  1. How to decode a string to create long value
  2. How to convert and parse long value from string
  3. How to convert or parse string to long with radix
Home » Java Tutorial » Primitive Data Types

Introduction

    Java Primitive Data Types

Boolean

    Java boolean type
    Java boolean type conversion
    Convert string value to boolean
    Convert boolean to string

Char

    Java char type
    Compare two char values
    Change char case
    Java char conversion
    Java char value and its attributes

Byte

    Java byte type
    Convert Byte to String
    Convert String to byte
    Byte object constructor
    Byte's max and min value
    Compare two byte values
    Convert Byte to byte, double, float, int, long and short

Short

    Java short type
    Short min/max value and size
    Create Short object
    Compare short values
    Convert short to String
    Convert Short to primitive types
    Convert string to short
    Reverse bytes

Integer

    Java int type
    int max/min value
    Create Java integer
    Convert int to binary, hexadecimal and octal format
    Compare integer values
    Integer sign
    Convert string to int
    Convert int to primitive types
    Convert int to String
    int bit operations

Long

    Java long type
    Compare two long values
    Convert long to binary, hex and octal
    Convert long value to primitive types
    Convert String to long value
    Convert long to String

Float

    Java float type
    Java float type conversion
    Predefined value for float type
    Compare two float value

Double

    Java double type
    Deal with NaN double value
    Compare two double values
    Java double type creation and comparison
    Java double type conversion

Data Type Conversion

    Java Automatic Type Conversion and Casting
    Data type casting
    Java type promotion
    Autoboxing and auto-unboxing