具有多态引用的 Java 集合
我是 Java 编程的初学者,想了解在这里使用多态引用的正确方法是什么。
假设我们在 C++ 中有以下(抽象)代码:
List<Fruit*> lstFruit;
...
// collect apples here
while (...)
{
Fruit* apple = new Apple("green");
lstFruits.append(apple);
}
...
lstFruit[i]->doSomething(); // here is our virtual method
Java 不允许我创建一个引用 abstract
基类的 List
集合。在这种情况下我该怎么办?我的目标是普遍使用子类的不同对象,无论它们的类实际上是什么。
I'm a beginner in Java programming and would like to understand what is the right way for working with polymorphic references here.
Suppose we have the following (abstract) code in C++:
List<Fruit*> lstFruit;
...
// collect apples here
while (...)
{
Fruit* apple = new Apple("green");
lstFruits.append(apple);
}
...
lstFruit[i]->doSomething(); // here is our virtual method
Java doesn't let me create a List
collection with references to a base class that is abstract
. What should I do in this situation? My goal is to work with different objects of child classes universally, no matter what their class actually is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用抽象类创建通用集合:
You can create a generic collection with astract class: