我是java新手,我在窗口上有一些复选框和一个按钮,当我单击此按钮以选中窗口中的所有复选框时,我想要。
在 C# 中,我使用了这个:
foreach (Control c in this.Controls) {
if ((c) is CheckBox) {
c.Checked = true;
}
}
我怎样才能在 Java 中做到这一点?
这是我试过的代码
for (Component c : this.getComponents()) {
if(c instanceof JCheckBox)
c.setSelected(true);
}