- 快速教程
- 斯威夫特 - 主页
- 斯威夫特 - 概述
- Swift - 环境
- Swift - 基本语法
- Swift - 数据类型
- Swift - 变量
- Swift - 可选
- Swift - 元组
- Swift - 常量
- Swift - 文字
- Swift - 运算符
- Swift - 决策
- Swift - 循环
- Swift - 字符串
- 斯威夫特 - 角色
- Swift - 数组
- Swift - 套装
- 斯威夫特 - 字典
- Swift - 函数
- Swift - 闭包
- Swift - 枚举
- Swift - 结构
- Swift - 类
- Swift - 属性
- Swift - 方法
- Swift - 下标
- Swift - 继承
- Swift - 初始化
- Swift - 去初始化
- Swift - ARC 概述
- Swift - 可选链接
- Swift - 类型转换
- Swift - 扩展
- Swift - 协议
- Swift - 泛型
- Swift - 访问控制
- 斯威夫特有用的资源
- Swift - 在线编译
- Swift - 快速指南
- Swift - 有用的资源
- 斯威夫特 - 讨论
Swift - 继续声明
Swift 4 中的continue语句告诉循环停止正在执行的操作,并在循环的下一次迭代开始时重新开始。
对于for循环,continue语句会引发条件测试并递增要执行的循环部分。对于while和do...while循环,continue语句使程序控制传递给条件测试。
句法
Swift 4 中continue语句的语法如下 -
continue
流程图
例子
var index = 10 repeat { index = index + 1 if( index == 15 ){ continue } print( "Value of index is \(index)") } while index < 20
当上面的代码被编译并执行时,它会产生以下结果 -
Value of index is 11 Value of index is 12 Value of index is 13 Value of index is 14 Value of index is 16 Value of index is 17 Value of index is 18 Value of index is 19 Value of index is 20
swift_loops.htm