當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Dart RtcStatsReport.putIfAbsent用法及代碼示例


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.dev大神的英文原創作品 putIfAbsent method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。