java.lang.Number.intValue()方法範例


java.lang.Number.intValue() 方法返回指定的數值作為一個int值。這可能會涉及到舍入或截斷。

宣告

以下是java.lang.Number.intValue()方法的宣告

public abstract int intValue()

引數

  • NA

返回值

此方法返回轉換為int型別後該物件表示的數值。

異常

  • NA

例子

下面的例子顯示lang.Number.intValue()方法的使用。

package com.yiibai;

public class NumberDemo {

   public static void main(String[] args) {

      // get a number as float
      Float x = new Float(123456f);

      // get a number as double
      Double y = new Double(9876);

      // print their value as int
      System.out.println("x as float:" + x
              + ", x as Integer:" + x.intValue());
      System.out.println("y as double:" + y
              + ", y as Integer:" + y.intValue());

   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

x as float:123456.0, x as Integer:123456
y as double:9876.0, y as Integer:9876