Java Short类shortValue()方法及示例

Short类shortValue()方法

  • shortValue()方法在java.lang包中可用。

  • shortValue()方法用于返回由此Short对象表示的值,该对象转换为short类型(通过强制转换)。

  • shortValue()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名访问该方法,则会收到错误消息。

  • 从Short转换为short时,shortValue()方法不会引发异常。

语法:

    public short shortValue();

参数:

  • 它不接受任何参数。

返回值:

此方法的返回类型为short,它返回此Short对象表示的转换后的值(从Short类型转换为short类型)。

示例

//Java程序演示示例 
//的shortValue()短类的方法

public class ShortValueOfShortClass {
    public static void main(String[] args) {

        //变量初始化
        short s1 = 10;
        short s2 = 20;

        //它返回由此Short ob1对象表示的short值
        //转换为short
        Short ob1 = new Short(s1);

        //显示ob1结果
        System.out.println("ob1.shortValue(): " + ob1.shortValue());

        //它返回此Short ob2对象表示的short值
        //转换为short
        Short ob2 = new Short(s2);

        //显示ob2结果
        System.out.println("ob2.shortValue(): " + ob2.shortValue());
    }
}

输出结果

ob1.shortValue(): 10
ob2.shortValue(): 20