Java Data Type How to - Convert Long to numeric primitive data types example








Question

We would like to know how to convert Long to numeric primitive data types example.

Answer

//from   w w  w . ja va  2s .  c o m


       

public class Main {

  public static void main(String[] args) {
    Long lObj = new Long("10");
    byte b = lObj.byteValue();
    System.out.println(b);

    short s = lObj.shortValue();
    System.out.println(s);

    int i = lObj.intValue();
    System.out.println(i);

    float f = lObj.floatValue();
    System.out.println(f);

    double d = lObj.doubleValue();
    System.out.println(d);
  }
}

The code above generates the following result.