當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Number intValue()用法及代碼示例


Number類intValue()方法

  • intValue() 方法可在java.lang包。
  • intValue() 方法用於返回此 Number 對象表示的值轉換為 int 類型(通過強製轉換),它可能涉及舍入或截斷。
  • intValue() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • intValue() 方法在從 number 轉換為 int 時不拋出異常。

用法:

    public abstract int intValue();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是int,它返回一個由這個 Number 對象表示的轉換後的(從類型 number 到 int)值。

例:

// Java program to demonstrate the example 
// of intValue() method of Number class

public class IntValueOfNumberClass {
    public static void main(String[] args) {
        // Variables initialization
        float f1 = 10.58f;
        double d1 = 20.62;

        // It returns int value denoted by this object
        // and converted to a int by calling f.intValue()
        Float f = new Float(f1);

        // Display f result
        System.out.println("f.intValue():" + f.intValue());

        // It returns int value denoted by this object
        // and converted to a int by calling d.intValue()
        Double d = new Double(d1);

        // Display d result
        System.out.println("d.intValue():" + d.intValue());
    }
}

輸出

f.intValue():10
d.intValue():20


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Number intValue() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。