📅  最后修改于: 2023-12-03 15:31:50.602000             🧑  作者: Mango
Byte
类是一个封装了一个原始 byte 类型的对象。其中包括了很多方法,其中就包括 shortValue()
方法。
shortValue()
方法返回此 Byte 对象所表示的 byte 值的值,返回值类型为 short
。
public short shortValue()
此方法返回此 Byte 对象所表示的 byte 值的值。
下面是一个使用 shortValue()
方法的示例:
Byte b = new Byte("100");
short s = b.shortValue();
System.out.println("Byte 值: " + b);
System.out.println("Byte 转成 Short 后的值: " + s);
输出结果:
Byte 值: 100
Byte 转成 Short 后的值: 100
上面的示例中,我们先创建了一个 Byte 对象 b
,并赋值为字符串 "100"
,然后调用 shortValue()
方法将其转换为 short
类型,并赋值给变量 s
。最后,我们通过 System.out.println()
方法输出 b
和 s
的值。
在使用 shortValue()
方法之前,需要确保 Byte 对象所表示的 byte 值在 short
类型范围内,否则将会抛出 java.lang.ArithmeticException
异常。如果需要转换的值不存在于 short 范围内,可以使用 intValue()
方法将其转换为 int
类型。