dart:core
庫中List.from
的用法介紹如下。
用法:
List<E>.from(
Iterable elements,
{bool growable = true}
)
創建一個包含所有 elements
的列表。
elements
的Iterator 提供了元素的順序。
所有 elements
都應該是 E
的實例。
例子:
final numbers = <num>[1, 2, 3];
final listFrom = List<int>.from(numbers);
print(listFrom); // [1, 2, 3]
elements
iterable 本身可以具有任何元素類型,因此此構造函數可用於 down-cast a List
,例如:
const jsonArray = '''
[{"text": "foo", "value": 1, "status": true},
{"text": "bar", "value": 2, "status": false}]
''';
final List<dynamic> dynamicList = jsonDecode(jsonArray);
final List<Map<String, dynamic>> fooData =
List.from(dynamicList.where((x) => x is Map && x['text'] == 'foo'));
print(fooData); // [{text: foo, value: 1, status: true}]
當growable
為真時,此構造函數創建一個可增長列表;否則,它返回一個固定長度的列表。
相關用法
- Dart List.first用法及代碼示例
- Dart List.fillRange用法及代碼示例
- Dart List.filled用法及代碼示例
- Dart List.sort用法及代碼示例
- Dart List.addAll用法及代碼示例
- Dart List.indexOf用法及代碼示例
- Dart List.removeWhere用法及代碼示例
- Dart List.reversed用法及代碼示例
- Dart List.removeRange用法及代碼示例
- Dart List.unmodifiable用法及代碼示例
- Dart List.clear用法及代碼示例
- Dart List.length用法及代碼示例
- Dart List.removeAt用法及代碼示例
- Dart List.lastIndexWhere用法及代碼示例
- Dart List.retainWhere用法及代碼示例
- Dart List.shuffle用法及代碼示例
- Dart List.removeLast用法及代碼示例
- Dart List.setAll用法及代碼示例
- Dart List.empty用法及代碼示例
- Dart List.of用法及代碼示例
- Dart List.setRange用法及代碼示例
- Dart List.replaceRange用法及代碼示例
- Dart List.remove用法及代碼示例
- Dart List.asMap用法及代碼示例
- Dart List.add用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 List<E>.from constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。