Can someone explain what's happening here?
Assume Car and Bike are subclasses of Vehicle.
It looks to me like Vehicle v reference gets cast to a Bike. I know this is illegal and indeed the compiler spits out ... Car cannot be cast to Bike.
But shouldn't this be Vehicle cannot be cast to Bike? After all, Vehicle v is a Vehicle reference.
public class Test {
public static void main(String[] args) {
Vehicle v = new Car();
Bike b = (Bike) v;
// some stuff
}
}
ClassCastException. – Matt Ball Nov 22 '11 at 11:48