gpt4 book ai didi

java - 为什么我的 Action 监听器在单击时没有显示正确的图像?

转载 作者:行者123 更新时间:2023-12-01 18:48:28 25 4
gpt4 key购买 nike

我目前正在尝试编写匹配游戏的代码。我为 JButtonImageIcon 创建了一个二维数组。我已经完成了一个洗牌类名 Shuffle 这个类洗牌了 ImageIcon 在其数组中的位置。当在没有底牌的情况下开始游戏时,牌看起来像是被洗乱的。但是,当我使用基本卡启动游戏并合并 Action 监听器时,当您单击卡时,没有图像。如果有人能帮助我解决这个问题,我将非常感激。

考虑这段代码:

框架的方法:

void game() {
Shuffle shuffle = new Shuffle();
shuffle.random2();
ImageIcon base = new ImageIcon("images/BaseCard.png");
int x = 60;
int y = 20;
JFrame frame = obj.frame();
JLabel label = obj.label();
for (int i = 0; i < cards.length; ++i) {
for (int j = 0; j < cards[i].length; ++j) {
cards[i][j] = obj.Comp(base);
cards[i][j].addActionListener(new Clicked(i, j));
cards[i][j].setBounds(x, y, 90, 126);
y = y + 135;
if (y >= 540) {
y = 20;
x = x + 120;
}
frame.add(cards[i][j]);
}
}

frame.add(label);
frame.setLayout(null);
frame.setVisible(true);
}
}

这是 Shuffle 类:

class Shuffle {

Matching obj = new Matching();
String peach = "images/peach.png";
String daisy = "images/Baby_daisy.png";
String luigi = "images/Baby_Luigi.png";
String waluigi = "images/Baby_Waluigi.png";
String wario = "images/Baby_Wario.png";
String bowser = "images/BabyBowser.png";
String drybones = "images/DryBones.png";
String shyguy = "images/ShyGuy.png";

String[][] images = {
{peach, daisy, luigi, waluigi},
{wario, bowser, drybones, shyguy},
{peach, daisy, luigi, waluigi},
{wario, bowser, drybones, shyguy}
};

ImageIcon Icons[][] = new ImageIcon[4][4];

void random2() {

for (int i = 0; i < images.length; i++) {
for (int j = 0; j < images[i].length; j++) {
int i1 = (int) (Math.random() * images.length);
int j1 = (int) (Math.random() * images[i].length);

String temp = images[i][j];
images[i][j] = images[i1][j1];
images[i1][j1] = temp;
}
}

for (int i = 0; i < images.length; i++) {
for (int j = 0; j < images[i].length; j++) {
Icons[i][j] = new ImageIcon(images[i][j]);
}
}

}
}

这是 Action 监听器

class Clicked implements ActionListener {

Shuffle shuffle = new Shuffle();
Matching matching = new Matching();
private int i;
private int j;

public Clicked(int i, int j) {
this.i = i;
this.j = j;

}

public void actionPerformed(ActionEvent e) {
JToggleButton tBtn = (JToggleButton) e.getSource();
if (tBtn.isSelected()) {
System.out.println("click");
tBtn.setIcon(shuffle.Icons[i][j]);
} else {
System.out.println("not");
tBtn.setIcon(new ImageIcon("images/BaseCard.png"));
}

}

}

最佳答案

在您的 Clicked 中您正在创建一个新的类 Shuffle而不是:

public Clicked(Shuffle shuffle) {
this.shuffle = shuffle;
}

这将为您提供之前创建并洗牌的“牌组”。您可能还想考虑只拥有一个 Clicked并将其用于所有卡,如果您开始更改 Shuffle,请注意任何线程问题。 .

关于java - 为什么我的 Action 监听器在单击时没有显示正确的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59774865/

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