gpt4 book ai didi

java - 在 Java 中使用对象的 ArrayList(处理)

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

我在处理(Java)中创建了以下草图:

ArrayList<Piece> pieces = new ArrayList<Piece>();

void setup() {
size(300, 300);
pieces.add(new Piece(100, 200)); // I ADD ONE PIECE TO THE ARRAY LIST
}

void draw() {
background(0);
for (int i = 0; i < pieces.size(); i++) {
Piece p = pieces.get(i);
p.display(); // I WANT TO DRAW THE PIECE I'VE CREATED IN SETUP()
}
}

class Piece {
int x;
int y;

Piece (int x, int y) {
x = x;
y = y;
}

void display() {
fill(255);
ellipse(x, y, 30, 30); // AS X IS 100 AND Y IS 200, A BALL SHOULD BE DRAWN AT THOSE COORDINATES, BUT INSTEAD THE BALL IS DRAWN AT 0,0. WHY THAT?
}
}

我向数组列表中添加了一个坐标为 (100,200) 的片段。当我执行 p.display() 时,它会在 0,0 而不是 100,200 处绘制椭圆。为什么会出现这种情况?

最佳答案

我相信

x = x;
y = y;

应该是

this.x = x;
this.y = y;

在你的 Piece() 构造函数中。 x=x 只是将值设置为其自身,使用 this 关键字将根据您尝试传入的值设置 Piece 的值。

关于java - 在 Java 中使用对象的 ArrayList(处理),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28570544/

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