字节原语

byte 是一个 8 位有符号整数。它可以存储最小值 -2 7 (-128),最大值为 2 7 - 1(127)

byte example = -36;
byte myByte = 96;
byte anotherByte = 7;

byte addedBytes = (byte) (myByte + anotherByte); // 103
byte subtractedBytes = (byte) (myBytes - anotherByte); // 89

byte 的最大值和最小值可在以下位置找到:

byte high = Byte.MAX_VALUE;        // high == 127
byte low = Byte.MIN_VALUE;         // low == -128

byte 的默认值为 0

byte defaultByte;    // defaultByte == 0