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


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


Long类shortValue()方法

  • shortValue() 方法可在java.lang包。
  • shortValue() 方法用于返回由此 Long 对象表示的值转换为 short 类型(通过强制转换)。
  • shortValue() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • shortValue() 方法从 long 到 short 的转换时不抛出异常。

用法:

    public short shortValue();

参数:

  • 它不接受任何参数。

返回值:

这个方法的返回类型是short,它返回由此 Long 对象表示的转换后的(从 long 类型到 short 类型)值。

例:

// Java program to demonstrate the example 
// of shortValue() method of Long class

public class ShortValueOfLongClass {
    public static void main(String[] args) {
        // Variables initialization
        long l1 = 10;
        long l2 = 20;

        // It returns long value denoted by this Long ob1 object
        // and converted to a short by calling ob1.shortValue()
        Long ob1 = new Long(l1);

        // Display ob1 result
        System.out.println("ob1.shortValue():" + ob1.shortValue());

        // It returns long value denoted by this Long ob2 object
        // and converted to a short by calling ob2.shortValue()
        Long ob2 = new Long(l2);

        // Display ob2 result
        System.out.println("ob2.shortValue():" + ob2.shortValue());
    }
}

输出

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


相关用法


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