Dart List.first屬性返回列表中的第一個元素。 語法 List.first 示例 void main() { var lst = new List(); lst.add(12); lst.add(13); print("The first element of the list is: ${lst.first}"); } 執行上面示例代碼,得到以下結果 - The first element of the list is: 12 上一篇: Dart列表 下一篇: Dart映射