当前位置 : 主页 > 手机开发 > 其它 >

swift – 让我们输入for循环

来源:互联网 收集:自由互联 发布时间:2021-06-11
我正在玩 Swift. 为什么可以在for循环中声明let类型?据我所知,让意思是不变的,所以我很困惑. func returnPossibleTips() - [Int : Double] { let possibleTipsInferred = [0.15, 0.18, 0.20] //let possibleTipsExplicit
我正在玩 Swift.
为什么可以在for循环中声明let类型?据我所知,让意思是不变的,所以我很困惑.

func returnPossibleTips() -> [Int : Double] {
        let possibleTipsInferred = [0.15, 0.18, 0.20]
        //let possibleTipsExplicit:[Double] = [0.15, 0.18, 0.20]

        var retval = Dictionary<Int, Double>()
        for possibleTip in possibleTipsInferred {
            let inPct = Int(possibleTip * 100)
            retval[inPct] = calcTipWithTipPct(possibleTip)
        }

    return retval

    }
inPct常量的生命周期仅在循环迭代期间,因为它是块作用域:

for i in 1...5 {
    let x = 5
}
println(x) // compile error - Use of unresolved identifier x

在每次迭代中,inPct指的是一个新变量.您不能在任何迭代中分配任何inPcts,因为它们是使用let声明的:

for i in 1...5 {
    let x = 5
    x = 6 // compile error
}
网友评论