我有两个数组列表,声明为:
ArrayList<JRadioButton> category = new ArrayList<JRadioButton>();
ArrayList<Integer> cat_ids = new ArrayList<Integer>();
这两个字段都包含完全相同的相同数量的值,它们在自然中实际上是对应的。
我知道我可以像这样迭代其中一个循环:
for(JRadioButton button: category)
{
if(button.isSelected())
{
buttonName = button.getName();
System.out.println(buttonName);
}
}
但是,我想同时迭代这两个 LISTS。我知道它们的尺寸完全相同。我怎么做?