Casting konversi eksplisit
short a=2000;
int b;
b = (int) a; // c-like cast notation
b = int (a); // functional notation
Rich Rattlesnake
short a=2000;
int b;
b = (int) a; // c-like cast notation
b = int (a); // functional notation