gpt4 book ai didi

java - JButton 数组上的 ActionListener

转载 作者:搜寻专家 更新时间:2023-11-01 01:27:25 25 4
gpt4 key购买 nike

我创建了一个 JButton 数组,在创建时为它们分配了随机颜色,而不是手动创建每个按钮并为它们分配随机颜色。我现在正处于要随机更改颜色的位置,无论单击哪个按钮。我想以与目前创建和添加按钮相同的方式(通过使用循环)进行操作。

尽管按我认为可行的方式进行操作失败了。我得到 “从内部类中访问局部变量;需要声明为 final”。我是如果我使用 final 就无法更改,现在我很茫然。

是否有可能的解决方法?

package test;

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.beans.EventHandler;
import java.lang.String;
import java.util.Random;

public class TEST

{

/**
* @param args the command line arguments
*/
public static Random rand = new Random();
public static int oh;

public void btnPress(ActionEvent e, JButton[] jButts, float r, float g, float b) {
for (int y = 0; y < jButts.length; y++) {
if (e.getSource() == jButts[y]) {
jButts[y].setBackground(Color.getHSBColor(r, g, b));
}
}
}

public static void main(String[] args) {
JFrame frame = new JFrame("Suhp, Brah?");
frame.setLayout(new BorderLayout());
frame.setVisible(true);
frame.setBackground(Color.magenta);
frame.setSize(400, 400);
frame.setResizable(false);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new GridLayout(4, 4));
String[] numbs = {"0", "1", "2", "3", "4", "5", "6", "7"};
final JButton[] jButts = new JButton[numbs.length];//0-7

for (int i = 0; i < 8; i++) {

jButts[i] = new JButton(numbs[i].toString());
//String leString = rand.nextInt(255).toString;
jButts[i].setBackground(Color.getHSBColor(rand.nextFloat(), rand.nextFloat(), rand.nextFloat()));
}
for (int x = 0; x < 8; x++) {
frame.add(jButts[x]);
}
//ActionListener
for (int i =0; i < 8; i++) {

jButts[i].addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
i++;
jButts[i].setBackground(Color.getHSBColor(rand.nextFloat(), rand.nextFloat(), rand.nextFloat()));
}
});
}

}
}

最佳答案

无需在 ActionListener 中使用 i。您可以使用 ActionEvent#getSource 获取按钮:

jButts[i].addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
JButton button = (JButton) e.getSource();
button.setBackground(Color.getHSBColor(rand.nextFloat(),
rand.nextFloat(), rand.nextFloat()));
}
});

关于java - JButton 数组上的 ActionListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15125170/

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