IEnumerator vs Iterator
2021/12/1 6:06:06
本文主要是介绍IEnumerator vs Iterator,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
IEnumerator vs Iterator
IEnumerator
不考虑Reset
方法和原始列表的可变性,NoveNext
和Current
的只读向前用法:
Initially, the enumerator is positioned before the first element in the collection. You must call the MoveNext
method to advance the enumerator to the first element of the collection before reading the value of Current
; otherwise, Current
is undefined.
Current
returns the same object until MoveNext
is called. MoveNext
sets Current
to the next element.
If MoveNext
passes the end of the collection, the enumerator is positioned after the last element in the collection and MoveNext
returns false. When the enumerator is at this position, subsequent calls to MoveNext
also return false. If the last call to MoveNext
returned false, Current
is undefined.
输入数据,并初始化枚举器:
let ls = [0;1;2] let enumerator = (Seq.ofList ls).GetEnumerator() let ls = []
此时调用Current
会抛出异常,印证第一段描述:
enumerator.Current //InvalidOperationException : 枚举尚未开始。请调用 MoveNext。
我们改正代码,连续运行,直到序列的末尾:
let ls = [0;1;2] let enumerator = (Seq.ofList ls).GetEnumerator() show <| enumerator.MoveNext() // true show enumerator.Current // 0 show <| enumerator.MoveNext() // true show enumerator.Current // 1 show <| enumerator.MoveNext() // true show enumerator.Current // 2
当再次调用MoveNext()
返回false,接上段代码:
show <| enumerator.MoveNext() // false
当MoveNext()
返回false之后,如果此时调用Current
会抛出异常:
show enumerator.Current // InvalidOperationException : 枚举已完成。
当MoveNext()
返回false之后,继续调用MoveNext()
不会抛出异常,它总是返回false:
show <| enumerator.MoveNext() // false show <| enumerator.MoveNext() // false show <| enumerator.MoveNext() // false show <| enumerator.MoveNext() // false
当输入序列为空时,行为如下:
let ls = [] let enumerator = (Seq.ofList ls).GetEnumerator() show <| enumerator.MoveNext() // false show enumerator.Current // InvalidOperationException : 枚举已完成。
Iterator
javaScript的枚举器用法如下:
const iterable = ['a', 'b']; const iterator = iterable[Symbol.iterator](); iterator.next() //, { value: 'a', done: false } iterator.next() //, { value: 'b', done: false } iterator.next() //, { value: undefined, done: true }
这篇关于IEnumerator vs Iterator的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-26JavaScript入门教程:从零开始学习JavaScript编程
- 2024-12-26JavaScript入门教程:从零开始学习JavaScript
- 2024-12-26JS编程入门指南:从零开始学习JavaScript
- 2024-12-25Java编程面试题详解与解答
- 2024-12-25TS基础知识详解:初学者必看教程
- 2024-12-252024面试题解析与攻略:从零开始的面试准备指南
- 2024-12-25数据结构与算法学习:新手入门教程
- 2024-12-25初学者必备:订单系统资料详解与实操教程
- 2024-12-24内网穿透资料入门教程
- 2024-12-24微服务资料入门指南