last 属性

Node last
重写

最后一个元素。

如果 this 为空,将抛出 StateError。否则可能会遍历元素并返回最后一个看到的元素。一些序列可能有更高效的方式找到最后一个元素(例如列表可以直接访问最后一个元素,而无需遍历前面的元素)。

实现

Node get last {
  int len = this.length;
  if (len > 0) {
    return JS('Node', '#[#]', this, len - 1);
  }
  throw new StateError("No elements");
}
void last=(Node value)
继承

列表的最后一个元素。

访问列表的最后一个元素时,该列表必须不为空。

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.

实现

void set last(E value) {
  if (length == 0) throw IterableElementError.noElement();
  this[length - 1] = value;
}