Downcasts and Upcasts
- The terminology relates to the inheritance hierarchy: up or down.
// Explicit downcasting.
// Downcast: Object -> String.
String s = (String)h.get(key);
// Implicit upcasting
VariableController v = new VariableController();
// Upcast: HC <- VC.
HeaterController h = v;