dart:collection
庫中MapView.addAll
方法的用法介紹如下。
用法:
void addAll(
Map<K, V> other
)
override
將 other
的所有鍵/值對添加到此映射。
如果 other
的鍵已經在此映射中,則其值將被覆蓋。
該操作相當於對其他中的每個鍵和關聯值執行this[key] = value
。它迭代 other
,因此在迭代期間不得更改。
final planets = <int, String>{1: 'Mercury', 2: 'Earth'};
planets.addAll({5: 'Jupiter', 6: 'Saturn'});
print(planets); // {1: Mercury, 2: Earth, 5: Jupiter, 6: Saturn}
相關用法
- Dart MapView.addEntries用法及代碼示例
- Dart MapView.containsValue用法及代碼示例
- Dart MapView.clear用法及代碼示例
- Dart MapView.forEach用法及代碼示例
- Dart MapView.putIfAbsent用法及代碼示例
- Dart MapView.remove用法及代碼示例
- Dart MapView.updateAll用法及代碼示例
- Dart MapView.update用法及代碼示例
- Dart MapView.removeWhere用法及代碼示例
- Dart MapView.containsKey用法及代碼示例
- Dart MapMixin.containsKey用法及代碼示例
- Dart Map.update用法及代碼示例
- Dart MapEntry.value用法及代碼示例
- Dart Map.addEntries用法及代碼示例
- Dart MapMixin.update用法及代碼示例
- Dart Map.removeWhere用法及代碼示例
- Dart Map.from用法及代碼示例
- Dart Map.remove用法及代碼示例
- Dart Map.fromIterable用法及代碼示例
- Dart MapMixin.putIfAbsent用法及代碼示例
- Dart MapMixin.addAll用法及代碼示例
- Dart MapMixin.clear用法及代碼示例
- Dart MapMixin.addEntries用法及代碼示例
- Dart Map.containsValue用法及代碼示例
- Dart Map.clear用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 addAll method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。