我有一个对象数组,其中一些使用扩展版本,其中包含基类中不可用的函数。当数组由基类定义时,如何通过数组调用该函数?
实施例
Shape[] shapes = new Shape[10];
shapes[0] = new Circle(10) //10 == radius, only exists in circle class which extends Shape
shapes[0].getRadius(); //Gives me a compilation error as getRadius() doesn't exist in the
Shape class, only in the extended Circle class. Is there a way around this?
答案 0 :(得分:1)
Shape
类不包含方法getRadius
,因此如果不将Shape
的对象强制转换为Circle
,该方法将不可见。所以你应该使用它:
((Circle)shapes[0]).getRadius();
答案 1 :(得分:0)
如果您确定您的对象属于给定的子类,请使用cast:
((Circle)shapes[0]).getRadius();
答案 2 :(得分:0)
试试这个
if (shapes[0] instanceof Circle)
((Circle)shapes[0]).getRadius();