Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:html
  3. PluginArray
  4. last property
last
description

last property

Plugin getlast
override

The last element.

Throws aStateError ifthis is empty.Otherwise may iterate through the elements and returns the last oneseen.Some iterables may have more efficient ways to find the last element(for example a list can directly access the last element,without iterating through the previous ones).

Implementation

Plugin get last {  int len = this.length;  if (len > 0) {    return JS('Plugin', '#[#]', this, len - 1);  }  throw new StateError("No elements");}
setlast(Pluginvalue)
inherited

The last element of the list.

The list must be non-empty when accessing its last element.

The last element of a list can be modified, unlike anIterable.Alist.last is equivalent totheList[theList.length - 1],both for getting and setting the value.

final numbers = <int>[1, 2, 3];print(numbers.last); // 3numbers.last = 10;print(numbers.last); // 10numbers.clear();numbers.last; // Throws.

Implementation

void set last(E value) {  if (length == 0) throw IterableElementError.noElement();  this[length - 1] = value;}
  1. Dart
  2. dart:html
  3. PluginArray
  4. last property
PluginArray class

[8]ページ先頭

©2009-2025 Movatter.jp