我的迭代器方法无法找到输入的记录。我正在使用的方法是:
iterator = gamesList.listIterator();
int Code = Integer.parseInt(JOptionPane.showInputDialog("Enter Code:"));
boolean Found = false;
for (int i = 0; i < gamesList.size(); i++)
{
setMembers(iterator.next());
if(obj.getId() == Code)
{
Found = true;
break;
}
}
if(Found == true)
{
System.out.println("Success!");
}
此方法已被证明可与此类其他程序一起使用。