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


Java Float intValue()用法及代码示例


Float类中的intValue()方法是Java中的一种内置方法,该方法在类型转换后将调用对象指定的值作为int返回。

用法:

public int intValue()

参数:该函数不接受任何参数。


返回值:它以int形式返回FloatObject的值。

以下程序说明了Java中的intValue()方法:

示例1:

// Java code to demonstrate 
// Float intValue() method 
class GFG { 
    public static void main(String[] args) 
    { 
  
        // Float value 
        Float a = 17.47f; 
  
        // wrapping the Float value 
        // in the wrapper class Float 
        Float b = new Float(a); 
  
        // intValue of the Float Object 
        int output = b.intValue(); 
  
        // printing the output 
        System.out.println("Int value of "
                           + b + " is : " + output); 
    } 
}
输出:
Int value of 17.47 is : 17

示例2:

// Java code to demonstrate 
// Float intValue() method 
// Not a number 
class GFG { 
    public static void main(String[] args) 
    { 
  
        // Float value 
        Float a = Float.NaN; 
  
        // wrapping the Float value 
        // in the wrapper class Float 
        Float b = new Float(a); 
  
        // intValue of the Float Object 
        int output = b.intValue(); 
  
        // printing the output 
        System.out.println("Int value of "
                           + b + " is : " + output); 
    } 
}
输出:
Int value of NaN is : 0

参考: https://docs.oracle.com/javase/7/docs/api/java/lang/Float.html#intValue()



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Float intValue() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。