From 3b9c03d81d0e9bc0031df16f294f9bd500eb448e Mon Sep 17 00:00:00 2001 From: Shiny Zhu Date: Thu, 5 Jun 2014 23:38:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A7=E5=88=B6=E6=B5=81=E5=9C=B0=E4=B8=80?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/chapter2/05_Control_Flow.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/chapter2/05_Control_Flow.md b/source/chapter2/05_Control_Flow.md index e69de29b..5ad51630 100644 --- a/source/chapter2/05_Control_Flow.md +++ b/source/chapter2/05_Control_Flow.md @@ -0,0 +1,3 @@ +# 控制流 + +Swift提供了类似C语言的流程控制结构,包括将任务执行多次的`for`和`while`循环,基于特定条件选择执行不同分支的`if`和`switch`语句,还有控制流程跳转到其他代码的`break`和`continue`语句。 \ No newline at end of file