so I was trying to do something like
class O has a child E
I declare the variable
O xyz = new E();
but then if I call xyz.method(), I can only call those in class O's methods, not E's....so I can downcast it by
E xyz2 = (E) xyz;
my question is...can you do this without declaring a new variable....something like
O xyz = new E();
xyz = (E) xyz;
and now I can use xyz.method() to call E's methods
is there a way to do this in java?
xyzto be of typeE, you would never writeO xyz = new E(), but declare the proper typeE xyz = new E(). But I assume that your real code is more difficult than this example. – Thilo Jan 31 '11 at 5:57