如何跳过for-in循环的迭代(Swift 3)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何跳过for-in循环的迭代(Swift 3)相关的知识,希望对你有一定的参考价值。
是否有可能跳过Swift 3中for-in循环的迭代?
我想做这样的事情:
for index in 0..<100 {
if someCondition(index) {
index = index + 3 //Skip iterations here
}
}
答案
简单的while循环可以
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
}
}
另一答案
最简单的方法是在if条件下使用continue
for index in 1...100
{
if index == 5
{
continue
}
print(index)//1 2 3 4 6 7 8 9 10
}
要么
for index in 1...10 where index%2 == 0
{
print(index)//2 4 6 8 10
}
以上是关于如何跳过for-in循环的迭代(Swift 3)的主要内容,如果未能解决你的问题,请参考以下文章