Java Short类byteValue()方法及示例
Short类byteValue()
方法
byteValue()方法在java.lang包中可用。
byteValue()方法用于返回此Short对象表示的值,该对象转换为byte类型(通过强制转换)。
byteValue()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名访问该方法,则会收到错误消息。
从Short转换为byte时,byteValue()方法不会引发异常。
语法:
public byte byteValue();
参数:
它不接受任何参数。
返回值:
此方法的返回类型为字节,它返回此Short对象表示的转换后的值(从Short类型转换为byte类型)。
示例
//Java程序演示示例//的byteValue()短类的方法
public class ByteValueOfShortClass {
public static void main(String[] args) {
//变量初始化
short s1 = 100;
short s2 = 200;
//它返回由此Short ob1对象表示的short值
//转换为字节
Short ob1 = new Short(s1);
//显示ob1结果
System.out.println("ob1.byteValue(): " + ob1.byteValue());
//它返回此Short ob2对象表示的short值
//转换为字节
Short ob2 = new Short(s2);
//显示ob2结果
System.out.println("ob2.byteValue(): " + ob2.byteValue());
}
}
输出结果
ob1.byteValue(): 100ob2.byteValue(): -56
以上是 Java Short类byteValue()方法及示例 的全部内容, 来源链接: utcz.com/z/330809.html