位元組原語
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