今日は、java.lang.Byte クラスのソース コードを分析して、本題に進みましょう
まず第一に
public final class Byte extends Number implements Comparable<Byte> { public static final byte MIN_VALUE = -128; public static final byte MAX_VALUE = 127; public static final int SIZE = 8; public static final int BYTES = SIZE / Byte.SIZE; @SuppressWarnings("unchecked") public static final Class<Byte> TYPE = (Class<Byte>) Class.getPrimitiveClass("byte");
最初の文は、Byte クラスは最終的に変更されており、継承することができないということです。 Number クラスであり、一連の数値型に使用できます。変換では、比較に使用できる Comparable インターフェイスを実装します。
2 番目と 3 番目の文は、バイトのサイズを定義します。これは 8 ビット、つまり 1 バイトです。
5 番目の文は Bytes、つまり SIZE/Byte.SIZE = 1 を占めます
警告に対してサイレントであると注釈が付けられた文は、このクラスの元のクラスを取得します。
public Byte(byte value) { this.value = value; } public Byte(String s) throws NumberFormatException { this.value = parseByte(s, 10); }
public static String toString(byte b) { return Integer.toString((int)b, 10); } public String toString() { return Integer.toString((int)value); } private static class ByteCache { private ByteCache(){} static final Byte cache[] = new Byte[-(-128) + 127 + 1]; static { for(int i = 0; i < cache.length; i++) cache[i] = new Byte((byte)(i - 128)); } }
public static Byte valueOf(byte b) { final int offset = 128; return ByteCache.cache[(int)b + offset]; } public static Byte valueOf(String s, int radix) throws NumberFormatException { return valueOf(parseByte(s, radix)); } public static Byte valueOf(String s) throws NumberFormatException { return valueOf(s, 10); }
public static Byte decode(String nm) throws NumberFormatException { 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); }
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; }
@Override public int hashCode() { return Byte.hashCode(value); } public static int hashCode(byte value) { return (int)value; }
public boolean equals(Object obj) { if (obj instanceof Byte) { return value == ((Byte)obj).byteValue(); } return false; }
メソッドが比較に使用できるようになりました。
public int compareTo(Byte anotherByte) { return compare(this.value, anotherByte.value); } public static int compare(byte x, byte y) { return x - y; }
比較メソッドは、x > y の場合は正の数を返し、x = y の場合は 0 を返します。 x < yの場合は負の数を返す
public static int toUnsignedInt(byte x) { return ((int) x) & 0xff; } public static long toUnsignedLong(byte x) { return ((long) x) & 0xffL; }
byte型をunsigned int型とlong型に変換する
private static final long serialVersionUID = -7183698231559129828L;
今はあまり説明しないし、シリアル化も理解していない。のプロセス。 。 。 。
関連記事:
以上がJavaのByteクラスのソースコードを詳細に解析 - 手順の詳細の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。