Type Issues
Type Casting = To change a basic type into another :
int ch = 70;
char c = (char) ch;
* Casts that results in no loss of information :
From Type To Type
byte short, char, int, long, float, double
short int, long, float, double
char int, long, float, double
int long, float, double
long float, double
float double
Previous slide
Next slide
Back to first slide
View graphic version