1.

What Is Explicit Casting?

Answer»

Explicit casting in the PROCESS in which the complier are specifically informed to about TRANSFORMING the object.
EXAMPLE
long i = 700.20;
int j = (int) i; //Explicit casting.

Explicit casting in the process in which the complier are specifically informed to about transforming the object.
Example
long i = 700.20;
int j = (int) i; //Explicit casting.



Discussion

No Comment Found