码迷,mamicode.com
首页 > 编程语言 > 详细

Swift-5-流程控制

时间:2014-11-23 18:57:25      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   for   on   div   

// Playground - noun: a place where people can play

import UIKit

// For-In 循环
// 1 遍历数字区间
for index in 1...5 {
    println("\(index) times 5 is \(index)")
}

// 2 遍历数组
let names = ["Anna", "Alex", "Brain", "Jack"]
for name in names {
    println("hello, \(name)")
}

// 3 遍历字典
let numberOfLegs = ["spider" : 8, "ant" : 6, "cat" : 4]
for (name, legCount) in numberOfLegs {
    println("\(name) has \(legCount) legs")
}

// 4 遍历字符
for character in "hello" {
    println(character)
}

// For 循环
for var index = 0; index < 3; index++ {
    println("index is \(index)")
}

// While do-while
var i = 0
do {
    i++
} while (i < 3)

while (i < 5) {
    i++
}

// 条件语句 Conditional Statements
var temperatureInFahrenheit = 30
if temperatureInFahrenheit <= 32 {
    println("It‘s very cold")
}

switch temperatureInFahrenheit {
    case 1...20:
        println("1...20")
    case 23, 30:
        println("come here")
        fallthrough // 默认不会进入下一个判断,加上这个关键字可以让匹配直接进入下一个
    default:
        println("default")
        break // 跳出switch
}

var somePoint = (1, 1)
switch somePoint {
    case let (x, y) where x == y:
        println("equal")
    default:
        break
}

 

Swift-5-流程控制

标签:style   blog   io   ar   color   sp   for   on   div   

原文地址:http://www.cnblogs.com/liufeng24/p/4117184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!