dart:html
库中RtcStatsReport.putIfAbsent
方法的用法介绍如下。
用法:
dynamic putIfAbsent(
String key,
dynamic ifAbsent(
)
)
override
查找 key
的值,如果不存在则添加一个新条目。
返回与 key
关联的值(如果有)。否则调用ifAbsent
以获取新值,将key
与该值相关联,然后返回新值。
final diameters = <num, String>{1.0: 'Earth'};
final otherDiameters = <double, String>{0.383: 'Mercury', 0.949: 'Venus'};
for (final item in otherDiameters.entries) {
diameters.putIfAbsent(item.key, () => item.value);
}
print(diameters); // {1.0: Earth, 0.383: Mercury, 0.949: Venus}
// If the key already exists, the current value is returned.
final result = diameters.putIfAbsent(0.383, () => 'Random');
print(result); // Mercury
print(diameters); // {1.0: Earth, 0.383: Mercury, 0.949: Venus}
调用 ifAbsent
不得在映射中添加或删除键。
相关用法
- Dart RtcStatsReport.containsKey用法及代码示例
- Dart RtcStatsReport.containsValue用法及代码示例
- Dart RtcStatsReport.remove用法及代码示例
- Dart RtcStatsReport.addAll用法及代码示例
- Dart RtcStatsReport.clear用法及代码示例
- Dart RtcStatsReport.forEach用法及代码示例
- Dart RegExp.pattern用法及代码示例
- Dart RawSecureSocket.connect用法及代码示例
- Dart RegExp.isCaseSensitive用法及代码示例
- Dart Random用法及代码示例
- Dart RegExp.allMatches用法及代码示例
- Dart RawReceivePort.handler用法及代码示例
- Dart RuneIterator.moveNext用法及代码示例
- Dart Random.nextDouble用法及代码示例
- Dart Random.nextInt用法及代码示例
- Dart Runes用法及代码示例
- Dart RegExp.hasMatch用法及代码示例
- Dart Random.nextBool用法及代码示例
- Dart Rectangle构造函数用法及代码示例
- Dart RegExp用法及代码示例
- Dart RegExp构造函数用法及代码示例
- Dart RegExp.stringMatch用法及代码示例
- Dart Rectangle.fromPoints用法及代码示例
- Dart RegExp.firstMatch用法及代码示例
- Dart RegExpMatch用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 putIfAbsent method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。