当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Dart Map.unmodifiable用法及代码示例


dart:core 库中Map.unmodifiable 的用法介绍如下。

用法:

Map<K, V>.unmodifiable(
   Map other   
)

创建一个包含 other 条目的不可修改的基于哈希的映射。

键必须都是 K 的实例和 V 的值。 other 映射本身可以具有任何类型。

该Map需要键来实现兼容的 operator==hashCode 。创建的映射以固定顺序迭代键,保留 other 提供的顺序。

结果映射的行为类似于 Map.from 的结果,除了此构造函数返回的映射不可修改。

final planets = <int, String>{1: 'Mercury', 2: 'Venus', 3: 'Earth'};
final unmodifiableMap = Map.unmodifiable(planets);
unmodifiableMap[4] = 'Mars'; // Throws

相关用法


注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 Map<K, V>.unmodifiable constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。