gpt4 book ai didi

java - 对 previous 的第一次调用如何返回与最后一次调用 next 相同的元素?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:53:59 25 4
gpt4 key购买 nike

我正在阅读 Java Tutorial Oracle在List界面,遇到如下语句:

Calls to next and previous can be intermixed, but you have to be a bit careful. The first call to previous returns the same element as the last call to next.

我正在努力理解这句话:第一次调用 previous 返回与最后一次调用 next 相同的元素。有人可以更详细地解释一下吗?

最佳答案

The first call to previous returns the same element as the last call to next. Could someone explain it in a bit more detail?

如果你说 .next() 然后 .previous(),你会得到相同的实例,因为 Iterator 的内部位置>。否则,连续调用 .next() 将返回相同 实例

a b c
^

.next() 给出 b,但将指针移动到 c

a b c
^

所以 .previous() 然后产生 b

关于java - 对 previous 的第一次调用如何返回与最后一次调用 next 相同的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35979026/

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