HashMap<K, V>.fromEntries 构造函数
- @Since("2.1")
创建一个包含 entries
中条目的 HashMap。
返回一个新的 HashMap<K, V>
,其中包含已按照迭代顺序添加的 entries
的所有条目。
如果多个 entries
具有相同的键,后续出现的内容将覆盖早期的内容。
示例
final numbers = [11, 12, 13, 14];
final map = HashMap.fromEntries(numbers.map((i) => MapEntry(i, i * i)));
print(map); // {11: 121, 12: 144, 13: 169, 14: 196}
实现
@Since("2.1")
factory HashMap.fromEntries(Iterable<MapEntry<K, V>> entries) =>
HashMap<K, V>()..addEntries(entries);