dart:collection
庫中SplayTreeMap.forEach
方法的用法介紹如下。
用法:
void forEach(
void f(
K key,
V value
)
)
override
將 action
應用於映射的每個鍵/值對。
調用 action
不得在映射中添加或刪除鍵。
final planetsByMass = <num, String>{0.81: 'Venus', 1: 'Earth',
0.11: 'Mars', 17.15: 'Neptune'};
planetsByMass.forEach((key, value) {
print('$key: $value');
// 0.81: Venus
// 1: Earth
// 0.11: Mars
// 17.15: Neptune
});
相關用法
- Dart SplayTreeMap.from用法及代碼示例
- Dart SplayTreeMap.fromIterables用法及代碼示例
- Dart SplayTreeMap.fromIterable用法及代碼示例
- Dart SplayTreeMap.containsValue用法及代碼示例
- Dart SplayTreeMap.addAll用法及代碼示例
- Dart SplayTreeMap.clear用法及代碼示例
- Dart SplayTreeMap.putIfAbsent用法及代碼示例
- Dart SplayTreeMap.remove用法及代碼示例
- Dart SplayTreeMap.containsKey用法及代碼示例
- Dart SplayTreeMap.of用法及代碼示例
- Dart SplayTreeMap.updateAll用法及代碼示例
- Dart SplayTreeMap.update用法及代碼示例
- Dart SplayTreeMap用法及代碼示例
- Dart SplayTreeSet.lookup用法及代碼示例
- Dart SplayTreeSet.isEmpty用法及代碼示例
- Dart SplayTreeSet用法及代碼示例
- Dart SplayTreeSet.addAll用法及代碼示例
- Dart SplayTreeSet.remove用法及代碼示例
- Dart SplayTreeSet.isNotEmpty用法及代碼示例
- Dart SplayTreeSet.retainAll用法及代碼示例
- Dart SplayTreeSet.toSet用法及代碼示例
- Dart SplayTreeSet.clear用法及代碼示例
- Dart SplayTreeSet.removeAll用法及代碼示例
- Dart SplayTreeSet.of用法及代碼示例
- Dart SplayTreeSet.from用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 forEach method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。