Java - Integer shortValue() 方法



描述

Java Integer shortValue() 方法将此 Integer 的值作为 short 返回。

声明

以下是 java.lang.Integer.shortValue() 方法的声明

public short shortValue()

参数

返回值

此方法在转换为 short 类型后返回此对象表示的数值。

异常

从正整数 Integer 获取 short 值示例

以下示例演示了如何使用 Integer shortValue() 方法从 Integer 对象获取 short 值。我们创建了一个 Integer 变量,并为其分配了一个包含正整数的 Integer 对象。然后使用 shortValue 方法,我们获取此对象的 short 值,然后打印它。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      Integer obj = new Integer(5);
 
      // returns the value of this Integer as a short
      short s = obj.shortValue();
      System.out.println("Value of s = " + s);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Value of s = 5

从负整数 Integer 获取 short 值示例

以下示例演示了如何使用 Integer shortValue() 方法从 Integer 对象获取 short 值。我们创建了一个 Integer 变量,并为其分配了一个包含负整数的 Integer 对象。然后使用 shortValue 方法,我们获取此对象的 short 值,然后打印它。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      Integer obj = new Integer(-5);
 
      // returns the value of this Integer as a short
      short s = obj.shortValue();
      System.out.println("Value of s = " + s);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Value of s = -5

从正零整数 Integer 获取 short 值示例

以下示例演示了如何使用 Integer shortValue() 方法从 Integer 对象获取 short 值。我们创建了一个 Integer 变量,并为其分配了一个包含零值的 Integer 对象。然后使用 shortValue 方法,我们获取此对象的 short 值,然后打印它。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      Integer obj = new Integer(0);
 
      // returns the value of this Integer as a short
      short s = obj.shortValue();
      System.out.println("Value of s = " + s);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Value of s = 0

从负零值 Integer 获取 short 值示例

以下示例演示了如何使用 Integer shortValue() 方法从 Integer 对象获取 short 值。我们创建了一个 Integer 变量,并为其分配了一个包含负零值的 Integer 对象。然后使用 shortValue 方法,我们获取此对象的 short 值,然后打印它。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      Integer obj = new Integer(-0);
 
      // returns the value of this Integer as a short
      short s = obj.shortValue();
      System.out.println("Value of s = " + s);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Value of s = 0
java_lang_integer.htm
广告