Dart List.last屬性

2019-10-16 22:07:05

Dart List.last屬性返回列表的最後一個元素。

語法

List.last

範例

void main() { 
   var lst = new List(); 
   lst.add(12); 
   lst.add(13); 
   print("The last element of the list is: ${lst.last}"); 
}

執行上面範例程式碼,得到以下結果 -

The last element of the list is: 13