thinkinterview » interview questions » Java
« Previous

Java Interview Questions

next »
question What is Explicit Casting?
Answer Description:

Explicit Casting is the process in which the complier is specifically informed to about transforming the object.

Example

long x = 700.20;

int y = (int) x; //Explicit Casting


Next Queston » What is an abstract class? Can Abstract Class be instantiated dir...
What is an abstract class? Can Abstract Class be Posted By: View Count: