菜单
Dart
dart:collection
ListQueue
<
E
>
length 属性
length
暗黑模式
亮色模式
描述
length
属性
int
length
返回可迭代元素的数量。
这是一个高效的操作,不需要遍历元素。
实现
int get length => (_tail - _head) & (_table.length - 1);
Dart
dart:collection
ListQueue
<
E
>
length 属性
ListQueue 类
cookie 管理控制