作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了两个类,我试图调用一个构造函数(带参数)和一个方法。我发现如果我只使用一个对象就很容易。
我的目标:
我的作业:我谷歌了一下。我碰巧以对 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/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!