Pg 308 : 11.3.1 (Under "the ClassCastException")

Date: 2019-05-16
Status: Fixed
Fixedinbuild:
19
Old Text:
Mango m = new Mango(); Apple a = (Mango) m;
New Text:
Mango m = new Mango(); Apple a = (Apple) m;
Comments:
Reportedby:
natasci

 Back