dart:core
庫中Map.fromEntries
的用法介紹如下。
用法:
Map<K, V>.fromEntries(
Iterable<MapEntry<K, V>> entries
)
創建一個新Map並添加所有條目。
返回一個新的 Map<K, V>
,其中 entries
的所有條目都已按迭代順序添加。
如果多個entries
具有相同的鍵,則後麵的出現會覆蓋前麵的值。
相當於Map文字:
<K, V>{for (var e in entries) e.key: e.value}
例子:
final moonCount = <String, int>{'Mercury': 0, 'Venus': 0, 'Earth': 1,
'Mars': 2, 'Jupiter': 79, 'Saturn': 82, 'Uranus': 27, 'Neptune': 14};
final map = Map.fromEntries(moonCount.entries);
相關用法
- Dart Map.from用法及代碼示例
- Dart Map.fromIterable用法及代碼示例
- Dart Map.fromIterables用法及代碼示例
- Dart Map.forEach用法及代碼示例
- Dart Map.update用法及代碼示例
- Dart Map.addEntries用法及代碼示例
- Dart Map.removeWhere用法及代碼示例
- Dart Map.remove用法及代碼示例
- Dart Map.containsValue用法及代碼示例
- Dart Map.clear用法及代碼示例
- Dart Map.containsKey用法及代碼示例
- Dart Map.updateAll用法及代碼示例
- Dart Map.unmodifiable用法及代碼示例
- Dart Map.putIfAbsent用法及代碼示例
- Dart Map.of用法及代碼示例
- Dart Map.addAll用法及代碼示例
- Dart MapMixin.containsKey用法及代碼示例
- Dart MapEntry.value用法及代碼示例
- Dart MapMixin.update用法及代碼示例
- Dart MapView.containsValue用法及代碼示例
- Dart MapMixin.putIfAbsent用法及代碼示例
- Dart MapMixin.addAll用法及代碼示例
- Dart MapMixin.clear用法及代碼示例
- Dart MapMixin.addEntries用法及代碼示例
- Dart MapView.clear用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 Map<K, V>.fromEntries constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。