gpt4 book ai didi

java - 如何获取JCheckbox选中的索引?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:52:44 25 4
gpt4 key购买 nike

如何获取JCheckbox的选中索引(从使用for循环添加到屏幕的多个jcheckbox)?

// for some t values:
checkBoxes[t] = new JCheckBox("Approve");
checkBoxes[t].addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
boolean selected = checkBoxes[t].isSelected();
System.out.println("Approved"+selected);
}
});

当我点击复选框时,我想获取选中的复选框的索引。

最佳答案

您有一个 JCheckBox 数组,您可以简单地遍历您的数组并找出哪个 JCheckBox 已被选中。

关于:

When i click the check box, i want to get the selected check box's index.

编辑:您可以通过使用传递给 ActionListener 的 ActionEvent 的 getSource() 方法找出选中了哪个复选框。例如,您可以将 ActionListener 更改为如下所示:

checkBoxes[t].addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
boolean selected = checkBoxes[t].isSelected();
System.out.println("Approved"+selected);

int index = -1;
for (int i = 0; i < checkBoxes.length; i++) {
if (checkBoxes[i] == e.getSource()) {
index = i;
// do something with i here
}
}
}
});

关于java - 如何获取JCheckbox选中的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12247567/

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