提供可迭代的下一个元素,并移动到该元素之后。
必须只在 hasNext 为 true 时使用。调用此方法后,hasNext 的值可能会改变。
true
E next() { if (_ensureHasNext) { _hasNext = null; return _iterator.current; } throw StateError("No more elements"); }