The following code:
class Base{}
class Agg extends Base{
public String getFields(){
String name="Agg";
return name;
}
}
public class Avf{
public static void main(String args[]){
Base a=new Agg();
//please take a look here
System.out.println(((Agg)a).getFields()); // why a needs cast to Agg?
}
}
My question is: why we can't replace ((Agg)a).getFields() to a.getFields()? Why we need to type cast on a? And I mention that getFields() is not defined in class Base, thus class Agg does not extend this method from its base class. But if I defined method getFields() in class Base,
like:
class Base{
public String getFields(){
String name="This is from base getFields()";
return name;
}
}
everything would be all right. Then ((Agg)a).getFields() is equivalent to a.getFields()
In the code
Base a=new Agg();
Does this line means a has the reference of Agg() and a can invoke directly the method of class Agg. But why is there difference if I do not define the method getFields() in class Base? Can any one explain this to me?
