gpt4 book ai didi

java - Java 迭代器的调试

转载 作者:行者123 更新时间:2023-12-01 11:35:44 25 4
gpt4 key购买 nike

嗨,我对 Java 很陌生,在为 DoublyLinkedList 编写嵌套 Iterator 类时遇到了这个问题。我在运行测试程序时收到此错误。谁能发现我的迭代器类中的任何错误吗?非常感谢任何帮助!

        public E next() {
if (!hasNext()) throw new NoSuchElementException();
last = current;
E value = current.item;
current = current.next;
index++;
return value;

最佳答案

在 Iterable 中,您将 current 的初始值设置为第二个元素(current = head.next),因此当您尝试打印最后一个元素时,您实际上已经超出了列表。

关于java - Java 迭代器的调试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30012629/

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