我正在尝试用Java创建游戏。在游戏中,玩家将通过单击按钮遇到一些障碍。到目前为止,这些障碍被定义为整数,如果单击按钮,则会出现代表这些对象的数字。我想将这些数字更改为图片,但是无法将count [random1] [random2]从int更改为string。你有什么建议吗? (我只会在此处添加树障碍及其相关代码。)
public class Tiles implements ActionListener {
final static int TREES = 10;
static JFrame frame = new JFrame("The Game");
JButton[] [] buttons = new JButton[5][5];
static int [] [] counts = new int [5] [5];
Panel grid = new Panel();
public Tiles() {
frame.setSize(400,400);
frame.setLayout(new BorderLayout());
makeGrid();
frame.add(grid, BorderLayout.CENTER);
grid.setLayout(new GridLayout(5,5));
for (int row = 0; row < buttons.length; row++) {
for (int col = 0; col < buttons[0].length; col++) {
buttons [row][col] = new JButton();
buttons [row][col].addActionListener(this);
grid.add(buttons[row] [col]);
buttons[row][col].setBackground(Color.WHITE);
}
}
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
public void makeGrid() {
int numTrees = 2;
Random random = new Random();
int i = 0;
while (i < numTrees) {
int random1 = random.nextInt(5);
int random2 = random.nextInt(5);
if( counts [random1] [random2] == 0) {
counts[random1] [random2] = TREES;
i++;
}
}
}
}
答案 0 :(得分:1)
您可以将count
变量的类型从int[][]
更改为Map<Integer, Map<Integer, String>>
(或使用Guava中的Table
类:https://www.baeldung.com/guava-table)。
然后,您可以使用String
在位置(i,j)
上检索表示图像的count.get(i).get(j)
。