List.add() 函式將指定的值附加到 List 的末尾並返回修改後的 List 物件。參考以下範例- void main() { List l = [1,2,3]; l.add(12); print(l); }.
確定! 回上一頁