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
BigInteger
String
strNumber =
"42"
;
int
number =
Integer
.
parseInt
(strNumber);
System
.
out
.
println
(number);