Check integer overflow in Java

//no range check
byte b1 = (byte)200;
byte b2 = 100;
byte b3 = (byte)(b1 + b2);
//b3 is 44 (300 - 256)