remove 抽象方法
- Object? key
如果存在,从映射中删除 key
及其关联的值。
在移除前返回与 key
关联的值。如果 key
不在映射中,则返回 null
。
注意,有些映射允许 null
作为值,所以返回的 null
值并不总是表示 key 不存在。
final terrestrial = <int, String>{1: 'Mercury', 2: 'Venus', 3: 'Earth'};
final removedValue = terrestrial.remove(2); // Venus
print(terrestrial); // {1: Mercury, 3: Earth}
实现
V? remove(Object? key);