实际上,您的测试
dictionary[key] == nil可 用于检查字典中是否存在键。
true如果该值设置为,则不会产生
nil:
let dict : [String : Int?] = ["a" : 1, "b" : nil]dict["a"] == nil // false, dict["a"] is .Some(.Some(1))dict["b"] == nil // false !!, dict["b"] is .Some(.None)dict["c"] == nil // true, dict["c"] is .None
要区分“字典中不存在键”和“键的值为零”,您可以执行嵌套的可选分配:
if let val = dict["key"] { if let x = val { println(x) } else { println("value is nil") }} else { println("key is not present in dict")}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)