Java - Byte shortValue() 方法



描述

Java Byte shortValue() 方法返回此 Byte 作为 short 类型的值。

声明

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

public short shortValue()

指定于

Number 类中的 shortValue

参数

返回值

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

异常

使用 new 运算符创建的 Byte 对象获取 Short 值示例

以下示例演示了使用 new 运算符创建的 Byte 对象的 Byte shortValue() 方法的使用。我们创建了一个 Byte 变量,并为其分配了一个使用 new 运算符创建的 Byte 对象。然后创建一个 short 变量,并使用 shortValue() 方法为其分配一个 short 值,然后打印结果。

package com.tutorialspoint;
public class ByteDemo {
   public static void main(String[] args) {

      // create a Byte object b
      Byte b;

      // assign value to b
      b = new Byte("100");

      // create a short primitive d
      short d;

      // assign primitive value of b to d
      d = b.shortValue();

      String str = "Primitive short value of Byte object " + b + " is " + d;

      // print d value
      System.out.println( str );
   }
}

输出

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

Primitive short value of Byte object 100 is 100

使用 valueOf(String) 方法创建的 Byte 对象获取 Short 值示例

以下示例演示了使用 valueOf(String) 方法创建的 Byte 对象的 Byte shortValue() 方法的使用。我们创建了一个 Byte 变量,并为其分配了一个使用 valueOf(String) 方法创建的 Byte 对象。然后创建一个 short 变量,并使用 shortValue() 方法为其分配一个 short 值,然后打印结果。

package com.tutorialspoint;
public class ByteDemo {
   public static void main(String[] args) {

      // create a Byte object b
      Byte b;

      // assign value to b
      b = Byte.valueOf("100");

      // create a short primitive d
      short d;

      // assign primitive value of b to d
      d = b.shortValue();

      String str = "Primitive short value of Byte object " + b + " is " + d;

      // print d value
      System.out.println( str );
   }
}

输出

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

Primitive short value of Byte object 100 is 100

使用 valueOf(byte) 方法创建的 Byte 对象获取 Short 值示例

以下示例演示了使用 valueOf(byte) 方法创建的 Byte 对象的 Byte shortValue() 方法的使用。我们创建了一个 Byte 变量,并为其分配了一个使用 valueOf(byte) 方法创建的 Byte 对象。然后创建一个 short 变量,并使用 shortValue() 方法为其分配一个 short 值,然后打印结果。

package com.tutorialspoint;
public class ByteDemo {
   public static void main(String[] args) {

      // create a Byte object b
      Byte b;

      // assign value to b
      b = Byte.valueOf((byte) 100);

      // create a short primitive d
      short d;

      // assign primitive value of b to d
      d = b.shortValue();

      String str = "Primitive byte value of Byte object " + b + " is " + d;

      // print d value
      System.out.println( str );
   }
}

输出

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

Primitive byte value of Byte object 100 is 100
java_lang_byte.htm
广告