gpt4 book ai didi

java - 如何访问 list< 的实际运行时对象上的方法?扩展基类>?

转载 作者:行者123 更新时间:2023-12-01 10:36:32 24 4
gpt4 key购买 nike

我有一个如下所示的代码片段

List<? extends BaseClass> baseClassList = getBaseClassObjList();

BaseClass 的子类还有额外的公共(public)方法。

是否可以访问此列表的实际运行时对象上的这些附加方法?

最佳答案

不,不可能。您必须转换为该子类,然后调用该子类的方法。

class Animal{
//props
}

class Cat extends Animal{
public void sayMeow(){}
}

class Dog extends Animal{
public void bark(){}
}

List<? extends Animal> baseClassList = ...;
Animal animal = baseClassList.get(0)
//if we know animal object is of type Dog then straight away we can cast it
((Dog)animal).bark();

//if we are not sure if it is of Dog type then we have to check its type and if true then cast it and call its methods
if(animal instanceOf Dog){
((Dog)animal).bark();
}

即使你想使用反射,你也必须首先弄清楚它的实例类型是什么,然后你才能知道该方法是否可以被调用。

关于java - 如何访问 list< 的实际运行时对象上的方法?扩展基类>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34691209/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com