Simple types / Numbers / Integer
Conversion from a string
Converting to a string
Arithmetic operations
Getting random values
Bitwise operations
Numeral system
Converting Int -> Int
Check overflow
//
no
range check
Byte
b1 =
200
;
Byte
b2 =
100
;
Byte
b3 = b1 + b2;
//b3 is 44 (300 - 256)