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


Dart UnmodifiableListView用法及代碼示例


dart:collection 庫中UnmodifiableListView 類的用法介紹如下。

另一個列表的不可修改的List 視圖。

元素的來源可以是 List 或任何具有有效 Iterable.lengthIterable.elementAtIterable

final numbers = <int>[10, 20, 30];
final unmodifiableListView = UnmodifiableListView(numbers);

// Insert new elements into the original list.
numbers.addAll([40, 50]);
print(unmodifiableListView); // [10, 20, 30, 40, 50]

unmodifiableListView.remove(20); // Throws.

繼承

Object ListBase<E> UnmodifiableListView

可用的擴展

EnumByName

相關用法


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