dart:svg
庫中LengthList.first
屬性的用法介紹如下。
用法一
Length first
override
返回第一個元素。
如果 this
為空,則拋出 StateError。否則返回迭代順序中的第一個元素,相當於 this.elementAt(0)
。
用法二
void first=(Length value)
inherited
列表的第一個元素。
訪問第一個元素時,列表必須為非空。
與 Iterable 不同,可以修改列表的第一個元素。 list.first
等同於 list[0]
,用於獲取和設置值。
final numbers = <int>[1, 2, 3];
print(numbers.first); // 1
numbers.first = 10;
print(numbers.first); // 10
numbers.clear();
numbers.first; // Throws.
相關用法
- Dart LengthList.length用法及代碼示例
- Dart LengthList.elementAt用法及代碼示例
- Dart LengthList.last用法及代碼示例
- 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大神的英文原創作品 first property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。