Java xxxValue() 方法


Java xxxValue() 方法

public class Test {



   public static void main(String args[]) {

      Integer x = 5;



      // Returns byte primitive data type

      System.out.println( x.byteValue() );



      // Returns double primitive data type

      System.out.println(x.doubleValue());



      // Returns long primitive data type

      System.out.println( x.longValue() );      

   }

}