dart:core
庫中Iterator.current
屬性的用法介紹如下。
用法:
E current
當前元素。
如果迭代器尚未移動到第一個元素(moveNext 尚未被調用),或者如果迭代器已移過 Iterable 的最後一個元素(moveNext 返回 false),則 current 未指定。在這種情況下,Iterator 可能會拋出或返回特定於迭代器的默認值。
current
getter 應保持其值,直到下一次調用 moveNext ,即使基礎集合發生更改。成功調用 moveNext
後,用戶不需要緩存當前值,但可以繼續從迭代器中讀取它。
final colors = ['blue', 'yellow', 'red'];
var colorsIterator = colors.iterator;
while (colorsIterator.moveNext()) {
print(colorsIterator.current);
}
該示例的輸出是:
blue
yellow
red
相關用法
- Dart Iterator.moveNext用法及代碼示例
- Dart Iterator用法及代碼示例
- Dart Iterable.takeWhile用法及代碼示例
- Dart IterableMixin.isNotEmpty用法及代碼示例
- Dart IterableMixin.firstWhere用法及代碼示例
- Dart IterableMixin.lastWhere用法及代碼示例
- Dart Iterable.skipWhile用法及代碼示例
- Dart IterableMixin.every用法及代碼示例
- Dart Iterable.toSet用法及代碼示例
- Dart Iterable.singleWhere用法及代碼示例
- Dart Iterable.reduce用法及代碼示例
- Dart Iterable.elementAt用法及代碼示例
- Dart Iterable.where用法及代碼示例
- Dart IterableMixin.take用法及代碼示例
- Dart Iterable.lastWhere用法及代碼示例
- Dart IterableMixin.any用法及代碼示例
- Dart Iterable.contains用法及代碼示例
- Dart IterableMixin.skipWhile用法及代碼示例
- Dart IterableMixin.reduce用法及代碼示例
- Dart Iterable.expand用法及代碼示例
- Dart IterableMixin.elementAt用法及代碼示例
- Dart IterableMixin.forEach用法及代碼示例
- Dart IterableMixin.toList用法及代碼示例
- Dart IterableMixin.map用法及代碼示例
- Dart IterableMixin.join用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 current property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。