晚上好。我正在开发一个类似于旧游戏 LiteBrite 的程序,在该程序中,您将彩色钉子放在面板上,它就会亮起。在我的程序中,它的工作原理类似,当您单击面板时,它将创建一个新的椭圆(我命名为 ColorEllipse,它具有位置、大小和颜色的规范)并将其存储起来以进行保存。目前它是一个数组列表,但我需要它在一个常规数组中。我被告知创建一个新数组的方式,并将旧数组的所有内容复制到新数组中。现在我现在使用一个数组列表,但不幸的是这个程序有我们需要使用常规数组的规范。
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.lang.reflect.Array;
import java.util.ArrayList;
public class LiteBritePanel extends javax.swing.JPanel{
private final static int OFFSET = 5;
private static int LINE_WIDTH = 2;
private static int CELL_WIDTH = 25;
public ArrayList <Colorable> _circles; // where ColorEllipses will be stored
private ButtonPanel controlpanel; // used to set the color of peg that will be placed
public LiteBritePanel() {
this.setBackground(java.awt.Color.black);
_circles = new ArrayList<Colorable>();
controlpanel = new ButtonPanel(this);
this.addMouseListener(new MyMouseListener(this));
this.add(controlpanel);
}
public void paintComponent(java.awt.Graphics aPaintBrush) {
super.paintComponent(aPaintBrush);
java.awt.Graphics2D pen = (java.awt.Graphics2D) aPaintBrush;
java.awt.Color savedColor = pen.getColor();
pen.setColor(java.awt.Color.black);
for (int ball=0;ball<_circles.size();ball++)
if(_circles.get(ball).isEmpty())
return;
else
_circles.get(ball).fill(pen);
pen.setColor(savedColor);
this.repaint();
}
public void mouseClicked(java.awt.event.MouseEvent e){
boolean foundSquare = false;
for (int ball=0; ball < _circles.size() && !foundSquare; ball++){
if (_circles.get(ball).contains(e.getPoint()) == true){
foundSquare = true;
_circles.remove(ball);
this.repaint();
}
}
}
private class MyMouseListener extends java.awt.event.MouseAdapter {
private LiteBritePanel _this;
public MyMouseListener(LiteBritePanel apanel){
_this = apanel;
}
public void mouseClicked(java.awt.event.MouseEvent e){
_circles.add(new ColorEllipse(controlpanel.getColor(), e.getPoint().x - (e.getPoint().x%CELL_WIDTH), e.getPoint().y - (e.getPoint().y%CELL_WIDTH), CELL_WIDTH-3,_this));
_this.requestFocus();
boolean foundSquare = false;
for (int ball=0; ball < _circles.size() && !foundSquare; ball++){
if (_circles.get(ball).contains(e.getPoint()) == true){
foundSquare = true;
// code for removing ball if one is placed
_this.repaint();
}
}
}
}
}`
现在目前它被设置为一个 Arraylist,但我需要它按照这个规范在一个常规数组中。然后当单击面板时,它会在该特定位置的该数组中添加一个新的 ColorEllipse(并根据需要重新绘制以使其显示)。该程序的稍后部分将是当我触摸已经放置的钉子时,它会移除它,但那是另一次了。现在我需要知道如何增加数组的大小并将其内容复制到其中。谁能告诉我我应该改变什么?