Java整数 byteValue() 方法
Java.lang 包的Integer 类的byteValue()方法将给定的Integer 进行窄化原语转换后转换为字节并返回。
句法 :
public byte byteValue()
Return :
This method returns the numeric value represented by this object after
conversion to byte type.
示例:显示Java.lang.Integer.byteValue()方法的工作。
// Java program to demonstrate working
// of java.lang.Integer.byteValue() method
import java.lang.Integer;
class Gfg {
// driver code
public static void main(String args[])
{
Integer a = new Integer(34);
// Convert Integer number to byte value
byte b = a.byteValue();
System.out.println(b);
}
}
输出:
34