byte is a 8-bit integer that can have the values -127 (-27 + 1) to 127 (27 - 1).
byte x = 2; x *= 4; // now 8 x *= 16; // 128 - Overflow.
byte is a 8-bit integer that can have the values -127 (-27 + 1) to 127 (27 - 1).
byte x = 2; x *= 4; // now 8 x *= 16; // 128 - Overflow.