1. 程式人生 > >Swift for迴圈 一邊遍歷一邊刪除

Swift for迴圈 一邊遍歷一邊刪除

1.要遍歷陣列同時拿到下標值和元素,可通過元祖進行遍歷

1.1 定義陣列一個字串陣列如下

let array: [String] = ["a","b","c","d"]

1.2 利用元祖進行遍歷

 for (index,value) in array.enumerated() {

            print(index,value)

        }

1.3 輸出結果為

0 a

1 b

2 c

3 d

2.1 若要對陣列進行反向遍歷,可使用reversed()方法如下

 for (index,value) in array.enumerated().reversed

() {

1.假如還需要存到分拆存到別的陣列中可以採

陣列.insert(元素, at: 0)

2.刪除也可以在這裡做

陣列.remove(at:index )

            print(index,value)

        }

2.2 輸出結果如下

3 d

2 c

1 b

0 a