gpt4 book ai didi

java - 我想阅读带有对象的 ArrayList 的示例。(Java)

转载 作者:行者123 更新时间:2023-12-02 00:37:01 24 4
gpt4 key购买 nike

我创建了两个类,我试图调用一个构造函数(带参数)和一个方法。我发现如果我只使用一个对象就很容易。

我的目标:

  1. 使用 3 个对象调用相同的方法。
  2. 使用ArrayList调用该方法3次。

我的作业:我谷歌了一下。我碰巧以对 ArrayList 的解释及其某些示例作为结束。我没有找到我认为需要的示例,即将 ArrayList 与对象一起使用(如我的引文)。

public class DrawGraphics
{
BouncingBox box;

/** Initializes this class for drawing. */
public DrawGraphics()
{

box = new BouncingBox(200, 50, Color.green);

box.setMovementVector(1, 1);
}
//..................
//................
}

感谢那些试图提供帮助的人。

最佳答案

继续您的示例,这可能会让您了解列表的用途:

// Let's create an ArrayList that will contain the bouncingboxes
List<BouncingBox> boxList = new ArrayList<BouncingBox>();

// Let's create 5 of them and add them to the end of the List
for (int ii=0;ii<5;ii++) {
boxList.add(new BouncingBox(200, 50, Color.green));
}

// Iterate over the List we just created with the enhanced for - the method will
// be called on all objects in the List.
for (BouncingBox box : boxList) {
box.setMovementVector(1, 1);
}

这是您要找的吗?

关于java - 我想阅读带有对象的 ArrayList 的示例。(Java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7544519/

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