无法分配给'let'值'action'

时间:2014-06-14 23:26:27

标签: switch-statement swift constants

我正在尝试在switch语句之外定义一个常量,以便我可以在switch语句执行完毕后使用它并在switch语句中分配它:

let action: SKAction!

switch (whatever) {
case 0:
    sprite.position = CGPointMake(0, self.scene.size.height * lengthDiceroll)
    action = SKAction.moveTo(CGPointMake(self.scene.size.width, self.scene.size.height * (1 - lengthDiceroll)), duration: 1) // error here
    // other actions
default:
    println("meh")       

// add the sprite to the scene
let sequence = SKAction.sequence([action, action2])
sprite.runAction(SKAction.repeatActionForever(sequence))
self.addChild(sprite)

但我收到错误Cannot assign to 'let' value 'action'。如何分配操作以便我可以在交换机外使用它?

如果我尝试:

action! = SKAction.moveTo(CGPointMake(self.scene.size.width, self.scene.size.height * (1.0 - lengthDiceroll)), duration: 1)

我收到错误"Could not find an overload for '*' that accepts the supplied arguments"

2 个答案:

答案 0 :(得分:5)

必须立即为let声明的变量赋值。您不能简单地使用let和没有像您尝试在第一行上执行的值来定义变量。

你说你希望action成为一个常量,但是你在运行时修改它的值,这不是常量。因此,您需要一个变量,即使它的值只改变一次。

答案 1 :(得分:2)

我在这里找到了一个解决方案:Assign conditional expression in Swift?

  

您可以使用闭包来初始化不可变的:

let foo: Int = {
    if bar == 2 {
        return 100
    } else {
        return 120
    }
}()

您可以在闭包内使用switch,其他函数和任何复杂逻辑。