所以我有一个用循环构造的类。在构造函数中,我有两个 while 循环,它们构成了圆圈的“网格”。它应该是上课用的围巾,但我称它为锁子甲,因为这听起来更酷。无论如何,我们应该能够用不同的(客户端)类来改变围巾的颜色。我显然需要添加一个 mutator 方法来改变颜色。幸运的是,在 objectdraw 中有一个称为 setColor() 的 mutator。它工作得很好,除了当我尝试将它添加到这个类时,它只会改变网格中的最后一个圆圈。我知道为什么会发生这种情况,但我不知道如何解决它。我已经注释掉了我们在课堂上使用的“典型”突变体。
编辑:对不起,混乱的家伙......这只是班级,我有一个客户调用 new ChainMail() 然后对其执行 .setColor() 但它只更改最后一个 framedoval 而不是所有这些。那就是问题所在
import objectdraw.*;
import java.awt.*;
public class ChainMail {
private FramedOval link;
public ChainMail(int rows,int links,
Location p,Color rgb,
DrawingCanvas c) {
double numRows = 0;
// create the number of rows specified
while (numRows < rows) {
double numLinks = 0;
// create the number of links specified
while (numLinks < links) {
link = new FramedOval(p,12,12,c);
link.setColor(rgb);
// update the position
p.translate(8,0);
numLinks++;
}
// move position back to front col and down one row
p.translate(-8*links,8);
numRows++;
}
}
public ChainMail(int rows,int links,Location p,DrawingCanvas c) {
this(rows,links,p,Color.BLACK,c);
}
/* this doesn't work, only changes last circle
* public void setColor(Color c) {
* link.setColor(c);
* }
*/
}