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


Dart SplayTreeMap.fromIterable用法及代碼示例


dart:collection 庫中SplayTreeMap.fromIterable 的用法介紹如下。

用法:

SplayTreeMap<K, V>.fromIterable(
   Iterable iterable,    
   {K key(
   dynamic element   
)?,    
   V value(
   dynamic element   
)?,    
   int compare(
   K key1,    
   K key2   
)?,    
   bool isValidKey(
   dynamic potentialKey   
)?}   
)

創建一個 SplayTreeMap ,其中鍵和值是從 iterable 計算的。

對於iterable 的每個元素,此構造函數通過分別應用keyvalue 來計算鍵/值對。

鍵/值對的鍵不需要是唯一的。最後一次出現的鍵將簡單地覆蓋任何以前的值。

如果沒有為 keyvalue 指定函數,則默認使用可迭代值本身。例子:

final numbers = [12, 11, 14, 13];
final mapFromIterable =
    SplayTreeMap<int, int>.fromIterable(numbers,
        key: (i) => i, value: (i) => i * i);
print(mapFromIterable); // {11: 121, 12: 144, 13: 169, 14: 196}

相關用法


注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 SplayTreeMap<K, V>.fromIterable constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。