Java Short longValue()方法及示例

来源:这里教程网 时间:2026-02-17 21:09:49 作者:

Java Short longValue()方法及示例

Short类的 java.lang.Short.longValue() 方法是Java中的一个内置方法,用于将Short对象的值作为一个长值返回。

语法

ShortObject.longValue()

返回值: 它将ShortObject的值作为长值返回。

下面是longValue()方法在Java中的实现。

例1 :

// Java code to demonstrate// Short longValue() method  class GFG {    public static void main(String[] args)    {          // Short value        Short a = 17;          // wrapping the Short value        // in the wrapper class Short        Short b = new Short(a);          // longValue of the Short Object        long output = b.longValue();          // printing the output        System.out.println("Long value of "                           + b + " is : " + output);    }}

输出:

Long value of 17 is : 17

例2 :

// Java code to demonstrate// Short longValue() method  class GFG {    public static void main(String[] args)    {          String value = "17";          // wrapping the Short value        // in the wrapper class Short        Short b = new Short(value);          // longValue of the Short Object        long output = b.longValue();          // printing the output        System.out.println("Long value of "                           + b + " is : " + output);    }}

输出:

Long value of 17 is : 17

相关推荐