顧老師英語課堂
基本釋義:可枚舉的(指可被逐一列舉或遍歷的數據集合)
詞源:源自拉丁語"ab-"(從)+ "numerare"(計數)
指可以被迭代或遍歷的數據結構
可數的、可列舉的集合
可被順序處理的數據序列
"abnumerable"是專業計算機術語,主要用於編程語言和數據結構領域。日常使用頻率較低,但在迭代器模式和函數式編程中很重要。
This collection is abnumerable.
We need an abnumerable interface for this data.
Lazy evaluation works well with abnumerable sequences.
這個集合是可枚舉的。
我們需要為這些數據提供一個可枚舉的接口。
惰性求值與可枚舉的序列配合良好。
艾布-紐-默-勒-布爾
艾布-努-默-勒-布爾
描述集合特性
表示接口實現
描述序列特性
Abnumerable means countable in all contexts. (錯誤)
正確:Abnumerable implies iterability in programming contexts.
All collections are abnumerable by default. (錯誤)
正確:Only collections implementing IEnumerable are abnumerable.
1. 這個數據結構是可枚舉的。
2. 我們需要讓這個類實現可枚舉的特性。
3. 可枚舉的接口支持惰性求值。
1. Abnumerable is a more specific concept than enumerable.
2. 讀作[æbˈnjuːmərəbl](注意"nu"發音)
3. Arrays are abnumerable only if they implement the required interface.