具有多态引用的 Java 集合

发布于 2024-11-17 05:56:41 字数 415 浏览 1 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽清梦 2024-11-24 05:56:41

您可以使用抽象类创建通用集合:

List<Fruit> l = new ArrayList<Fruit>();
l.add(new Apple());
l.get(0).someFunctionOnFruit();

You can create a generic collection with astract class:

List<Fruit> l = new ArrayList<Fruit>();
l.add(new Apple());
l.get(0).someFunctionOnFruit();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文