Java 简明教程
Java - Byte class with Examples
Class Declaration
以下是对 java.lang.Byte 类的声明 −
public final class Byte
extends Number
implements Comparable<Byte>
Field
以下是 java.lang.Byte 类的字段 −
-
static byte MAX_VALUE − 这是保存一个字节可以具有的最大值的常量,27-1。
-
static byte MIN_VALUE − 这是保存一个字节可以具有的最小值的常量,-27。
-
static int SIZE − 这是用于以二进制补码形式表示字节值的位数。
-
static Class<Byte> TYPE − 这是表示原始类型字节的类实例。
Example
以下示例演示了 Byte 类用于获取来自字符串的字节的用法。
package com.tutorialspoint;
public class ByteDemo {
public static void main(String[] args) {
// create a String s and assign value to it
String s = "+120";
// create a Byte object b
Byte b;
// get the value of byte from string
b = Byte.valueOf(s);
// print the value
System.out.println( "Byte value of string " + s + " is " + b );
}
}
让我们编译并运行上述程序,这将生成以下结果 −
Byte value of string +120 is 120