【红包源码红包源码】【分位分时源码】【鸿蒙系统源码阅读】hasnext源码
时间:2024-11-19 03:42:39 分类:热点
1.java.util.NoSuchElementException 的问题
java.util.NoSuchElementException 的问题
@GwtCompatible
public abstract class AbstractIterator<T> extends UnmodifiableIterator<T> {
// 下面是源码
@Override
public final T next() {
if (!hasNext()) {
throw new NoSuchElementException();
}
state = State.NOT_READY;
T result = next;
next = null;
return result;
}
你都看到了。hasNext() 没有值呗。红包源码红包源码你看看你的分位分时源码集合呗。
鸿蒙系统源码阅读鸿蒙系统源码阅读