addAll方法
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}
实现
void addAll(Map<String, String> other) {
other.forEach((k, v) {
this[k] = v;
});
}