dart:svg
庫中LengthList.last
屬性的用法介紹如下。
用法一
Length last
override
返回最後一個元素。
如果 this
為空,則拋出 StateError。否則可能會遍曆元素並返回最後一個看到的元素。一些可迭代對象可能有更有效的方法來查找最後一個元素(例如,列表可以直接訪問最後一個元素,而無需遍曆之前的元素)。
用法二
void last=(Length value)
inherited
列表的最後一個元素。
訪問最後一個元素時,列表必須為非空。
與 Iterable 不同,可以修改列表的最後一個元素。 list.last
等同於 theList[theList.length - 1]
,用於獲取和設置值。
final numbers = <int>[1, 2, 3];
print(numbers.last); // 3
numbers.last = 10;
print(numbers.last); // 10
numbers.clear();
numbers.last; // Throws.
相關用法
- Dart LengthList.length用法及代碼示例
- Dart LengthList.first用法及代碼示例
- Dart LengthList.elementAt用法及代碼示例
- Dart LengthList.clear用法及代碼示例
- Dart LinkedHashMap用法及代碼示例
- Dart ListMixin.expand用法及代碼示例
- Dart List.first用法及代碼示例
- Dart Latin1Encoder用法及代碼示例
- Dart List.sort用法及代碼示例
- Dart ListMixin.contains用法及代碼示例
- Dart ListQueue.of用法及代碼示例
- Dart ListQueue.contains用法及代碼示例
- Dart ListMixin.join用法及代碼示例
- Dart ListMixin.setAll用法及代碼示例
- Dart ListMixin.where用法及代碼示例
- Dart List.fillRange用法及代碼示例
- Dart LinkedHashMap.from用法及代碼示例
- Dart ListQueue.lastWhere用法及代碼示例
- Dart ListMixin.toList用法及代碼示例
- Dart ListMixin.lastIndexOf用法及代碼示例
- Dart List構造函數用法及代碼示例
- Dart List.addAll用法及代碼示例
- Dart List.indexOf用法及代碼示例
- Dart ListQueue.firstWhere用法及代碼示例
- Dart LinkedHashMap.fromEntries用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 last property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。