Java.lang.Float 类

java.lang.Float.shortValue() 方法在缩小基元转换后返回此 Float 的值作为短整型.

语法

public short shortValue()

参数

无需参数。

返回值

返回转换为short类型的该对象表示的浮点值。

异常

无。

示例:

In在下面的示例中,java.lang.Float.shortValue()方法在转换为short类型后返回一个Float对象。

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //创建Float对象
    Float val1 = 25.2f;
    Float val2 = -25.2f;

    //打印Float对象的shortValue
    System.out.println("shortValue of the val1 is: " + val1.shortValue()); 
    System.out.println("shortValue of the val2 is: " + val2.shortValue());   
  }
}

上面的输出代码为:

shortValue of the val1 is: 25
shortValue of the val2 is: -25