In http://docs.oracle.com/javase/tutorial/java/data/numberclasses.html
Line: byte mask = 0xff
Explanation: Byte maximum value is 127 or 0x7f, but 0xff = 255. This code will throw a compilation error.
Replace 0xff to a lower number.
Line: byte mask = 0xff
Explanation: Byte maximum value is 127 or 0x7f, but 0xff = 255. This code will throw a compilation error.
Replace 0xff to a lower number.