位置:首頁 > Java技術 > Java教學 > Java xxxValue()方法

Java xxxValue()方法

描述:

該方法是Number對象調用方法返回的原始數據類型的值轉換。

語法:

這是每個原始數據類型一個單獨的方法:

byte byteValue()
short shortValue()
int intValue()
long longValue()
float floatValue()
double doubleValue()

參數:

下麵是參數的詳細信息:

  • NA

返回值:

  • 這些方法返回給定的簽名中的原始數據類型。

例如:

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() );      
   }
}

這將產生以下結果:

5
5.0
5