我试图跳过随机条件,如果为true,将跳过一个循环,但结果是打印所有元素0,1,2,3,4
我知道在 Java中索引是否会增加索引会跳过,但这不会发生 Swift.
我知道在 Java中索引是否会增加索引会跳过,但这不会发生 Swift.
更新:这是我编写的某个程序的简化版本,print()必须在每个循环之后立即发生,并且索引仅在某些未知条件下递增,我希望它的行为类似于JAVA.
for var index in 0..<5 { print(index)//this prints 0,4,this must happen right after for loop if some unknown condition { index+=1 } }@H_404_6@