var list = [3, 2, 6, 4, 6]; list.forEach((element) { // element 為list內的每個元素 print(element); /* 3 2 6 4 6 */ }); 複製程式碼 ...
確定! 回上一頁