index为什么不用赋初始值,或者定义?还是在for循环中默认定义了?
for index in 1 ..< 10 {
index
}
for var index:Int=1;index<10;index++ {
这两种写法是等价的