如何在迭代器中引用当前对象
我正在尝试在树集中实现搜索方法。通过使用具有条件的迭代器,我希望能够运行集合并打印与条件匹配的对象。但是,我目前这样做的方式是打印出后续对象而不是当前对象。这是我到目前为止所拥有的:
public void getDetails() {
Iterator<Person> it = this.getPersonSet().iterator();
System.out.println("Enter First Name");
String first = in.next().toLowerCase();
System.out.println("Enter Second Name");
String last = in.next().toLowerCase();
while (it.hasNext()) {
if (it.next().getLast().toLowerCase().equals(last)) {
Person p = it.next();
System.out.println(p);
}
}
}
任何帮助都会很棒