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() 没有值呗。unity光影效果源码你看看你的在线打车源码集合呗。
rpg源码unityrpg源码unity2025-01-24 14:33
2025-01-24 13:45
2025-01-24 13:01
2025-01-24 12:13
2025-01-24 12:11
2025-01-24 12:09