Java Type Casting is classified into two types.
Explicit casting is manually casting a variable to another type
short s=1024; int i; i = (int) s; // c-like cast notation i = int (s); // functional notation