How to skip iterations of a for-in loop (Swift 3)

£可爱£侵袭症+ 提交于 2019-12-01 10:51:06

问题


Is it possible to skip iterations of a for-in loop in Swift 3?

I want to do something like this:

for index in 0..<100 {
    if someCondition(index) {
        index = index + 3 //Skip iterations here
    }
}

回答1:


Simple while loop will do

var index = 0

while (index < 100) {
    if someCondition(index) {
        index += 3 //Skip 3 iterations here
    } else {
        index += 1
        // anything here will not run if someCondition(index) is true
    }
}



回答2:


The easiest way is using continue within the if condition

       for index in 1...100
       {
            if index == 5
            {
               continue
            }
        print(index)//1 2 3 4 6 7 8 9 10
        }

Or

for index in 1...10 where index%2 == 0
{
  print(index)//2 4 6 8 10
}


来源:https://stackoverflow.com/questions/41009118/how-to-skip-iterations-of-a-for-in-loop-swift-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!