dart:core
庫中Map.from
的用法介紹如下。
用法:
Map<K, V>.from(
Map other
)
創建一個具有與 other
相同的鍵和值的 LinkedHashMap。
鍵必須都是 K
的實例和 V
的值。 other
映射本身可以具有任何類型,與 Map.of 不同,並且在運行時檢查鍵和值類型(並且可能失敗)。
在可能的情況下更喜歡使用Map.of,並且隻使用Map.from
創建一個具有比原始類型更精確類型的新映射,並且知道所有鍵和值都具有這些更精確的類型。
LinkedHashMap
需要 key 來實現兼容的 operator==
和 hashCode
。它以 key 插入順序進行迭代。
final planets = <num, String>{1: 'Mercury', 2: 'Venus', 3: 'Earth', 4: 'Mars'};
final mapFrom = Map<int, String>.from(planets);
print(mapFrom); // {1: Mercury, 2: Venus, 3: Earth, 4: Mars}
相關用法
- Dart Map.fromIterable用法及代碼示例
- Dart Map.fromIterables用法及代碼示例
- Dart Map.fromEntries用法及代碼示例
- 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>.from constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。