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


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


Float类中的shortValue()方法是Java中的内置方法,该方法在类型转换后立即返回通过调用对象指定的值。

用法

public short shortValue()

返回值:它返回FloatObject的值作为short。


以下程序说明了Java中的shortValue()方法:
示例1:

// Java code to demonstrate 
// Float shortValue() 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); 
  
        // shortValue of the Float Object 
        short output = b.shortValue(); 
  
        // prshorting the output 
        System.out.println("Short value of "
                           + b + " is : " + output); 
    } 
}
输出:
Short value of 17.47 is : 17

示例2:

// Java code to demonstrate 
// Float shortValue() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        String value = "54.1f"; 
  
        // wrapping the Float value 
        // in the wrapper class Float 
        Float b = new Float(value); 
  
        // shortValue of the Float Object 
        short output = b.shortValue(); 
  
        // prshorting the output 
        System.out.println("Short value of "
                           + b + " is : " + output); 
    } 
}
输出:
Short value of 54.1 is : 54

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



相关用法


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