A Byte 클래스는 Number 클래스의 하위 클래스로, 객체의 원래 유형 바이트 값을 래핑할 수 있습니다. Byte 클래스의 객체에는 byte 유형의 단일 필드가 포함되어 있습니다. Byte 클래스의 중요한 메서드에는 byteValue(), compare(), compareTo(), decode(), parseByte(), valueOf() 등이 있습니다. Byte 클래스의 decode().byteValue() 메서드를 사용하여 16진수 값을 바이트로 변환할 수 있습니다.
<strong>public final class Byte extends Number implements Comparable<Byte></strong>
public class ConvertHexaDecimalToByte { public static void main(String args[]) { byte b = Byte.decode("0x0a").byteValue(); <strong>// convert hexadecimal value to byte.</strong> System.out.println(b); } }
10입니다.
위 내용은 Java에서 16진수 값을 바이트로 어떻게 변환합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!