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

8.swift大法-区间运算符和for-in循环

时间:2015-10-09 13:33:09      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

闭区间

[a,b]  --->  a...b

前闭后开区间

[a,b)  --->  a..<b

for index in 1...10
    println(index) // 输出1~10

for index in 0..<10
    println(index) // 输出0~9

// index为常量,不需要指定类型

let names = ["jack","lily","allen "]
for i in 0..<names.count
{
    println(names[i])
}    

  

8.swift大法-区间运算符和for-in循环

标签:

原文地址:http://www.cnblogs.com/lancely/p/4863491.html

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