当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。