Swift:如何在字符串表达式中打印出字典键的值?

Ami*_*ole 4 dictionary swift

出于某种原因,我只是不能使这个表达式工作:

let expandedBio: Dictionary<String,AnyObject> = ["name":"Saurabh", "profession":"developer", "language":"java", "employed": true]

if let employed : AnyObject = expandedBio["employed"] {
    println("\(expandedBio[\"name\"]) is not available")
}
Run Code Online (Sandbox Code Playgroud)

我该如何输出println声明?我收到了错误

Unexpected "" character  error in string interpolation
Run Code Online (Sandbox Code Playgroud)

我该怎么做?

Kre*_*iri 5

在当前版本的Swift中,您必须先将值放在自己的常量/变量中,然后使用它.

if let employed : AnyObject = expandedBio["employed"] {
    let t = expandedBio["name"]
    println("\(t) is not available")
}
Run Code Online (Sandbox Code Playgroud)