gpt4 book ai didi

java - 内部类中的局部变量必须是最终的或实际上最终的

转载 作者:行者123 更新时间:2023-12-02 13:01:06 24 4
gpt4 key购买 nike

JComboBox[] ChooseType = new JComboBox[a];
JRadioButton[] Primary = new JRadioButton[a];
ButtonGroup group = new ButtonGroup();
for (int b = 0; b < a; b++) {
ChooseType[b] = new JComboBox(Types);
Primary[b] = new JRadioButton();
group.add(Primary[b]);
Primary[b].addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
ChooseType[b].setSelectedIndex(8);//Error here
}
});
}

我已经尝试过这个:

final JComboBox[] ChooseType = new JComboBox[a];

我还尝试创建一个内部类和一个方法,因此我不必直接处理 actionPerformed 内的 JComboBox。有人可以告诉我如何修复它吗?

最佳答案

问题出在 b 变量上。您可以使用临时变量:

for (int b = 0; b < a; b++) {
int b0 = b;
chooseType[b] = new JComboBox(Types);
//...
chooseType[b0].setSelectedIndex(8);//Error here

ps:我更改了变量的大小写以符合 Java 的约定。

关于java - 内部类中的局部变量必须是最终的或实际上最终的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44288066/

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