Byte数字类同Integer,许多的方法也是直接调用Integer中的方法,简单!
package java.lang;
public final class Byte extends Number implements Comparable<Byte> {
// byte的最大与最小值 max 0111 1111
public static final byte MIN_VALUE = -128;
public static final byte MAX_VALUE = 127;
// Byte的原始类型
@SuppressWarnings("unchecked")
public static final Class<Byte> TYPE = (Class<Byte>) Class.getPrimitiveClass("byte");
// 将byte数据转换成String
public static String toString(byte b) {
// 实际上调用的是Integer.toString()
return Integer.toString((int)b, 10);
}
// 内部类,byte的缓存类
private static class ByteCache {
private ByteCache(){}
static final Byte cache[] = new Byte[-(-128) + 127 + 1];
static {
// 将[-128,127] 缓存到cache[]中
for(int i = 0; i < cache.length; i++)
cache[i] = new Byte((byte)(i - 128));
}
}
// 直接从缓存中获取数据,因为byte的范围就是 [-128, 127]
public static Byte valueOf(byte b) {
final int offset = 128;
return ByteCache.cache[(int)b + offset];
}
// 将数字字符串转化成byte类型的数字,radix字符串s的基数
public static byte parseByte(String s, int radix)
throws NumberFormatException {
// 实际调用的是Integer.parseInt(),然后对i对范围进行判断
int i = Integer.parseInt(s, radix);
if (i < MIN_VALUE || i > MAX_VALUE)
throw new NumberFormatException(
"Value out of range. Value:\"" + s + "\" Radix:" + radix);
return (byte)i;
}
// 将字符串转换成byte数字,不传入基数,默认以10为基数
public static byte parseByte(String s) throws NumberFormatException {
return parseByte(s, 10);
}
// 将字符串转换成byte数字,radix字符串s的基数
public static Byte valueOf(String s, int radix)
throws NumberFormatException {
return valueOf(parseByte(s, radix));
}
// 将字符串转换成byte数字,不传入基数,默认以10为基数
public static Byte valueOf(String s) throws NumberFormatException {
return valueOf(s, 10);
}
// 解码,将其它进制的字符串转换成10进制的byte数据
public static Byte decode(String nm) throws NumberFormatException {
// 实际底层调用的是Integer.decode()来进行解析
int i = Integer.decode(nm);
if (i < MIN_VALUE || i > MAX_VALUE)
throw new NumberFormatException(
"Value " + i + " out of range from input " + nm);
return valueOf((byte)i);
}
// 定义变量用来接收byte数据
private final byte value;
// 构造函数,传入一个byte值
public Byte(byte value) {
this.value = value;
}
// 构造函数,传入一个字符串对象,
public Byte(String s) throws NumberFormatException {
this.value = parseByte(s, 10);
}
//将byte数据转换为其它类型的数据
public byte byteValue() {
return value;
}
public short shortValue() {
return (short)value;
}
public int intValue() {
return (int)value;
}
public long longValue() {
return (long)value;
}
public float floatValue() {
return (float)value;
}
public double doubleValue() {
return (double)value;
}
// 将当前的byte数据转换成字符串
public String toString() {
return Integer.toString((int)value);
}
// 获取当前byte的hashCode值
@Override
public int hashCode() {
return Byte.hashCode(value);
}
// 计算byte数据的hashCode值
public static int hashCode(byte value) {
return (int)value;
}
// 比较两个byte数据的大小
public boolean equals(Object obj) {
if (obj instanceof Byte) {
return value == ((Byte)obj).byteValue();
}
return false;
}
// 比较两个byte数据,返回两个数的差值
public int compareTo(Byte anotherByte) {
return compare(this.value, anotherByte.value);
}
// 比较两个byte数据,返回两个数的差值
public static int compare(byte x, byte y) {
return x - y;
}
// 将byte转换为无符号的int
public static int toUnsignedInt(byte x) {
return ((int) x) & 0xff;
}
// 将byte转换为无符号的long
public static long toUnsignedLong(byte x) {
return ((long) x) & 0xffL;
}
// byte的长度为8个字节,即1位
public static final int SIZE = 8;
public static final int BYTES = SIZE / Byte.SIZE;
private static final long serialVersionUID = -7183698231559129828L;
}
不积跬步,无以至千里;不积小流,无以成江海。