📜  swift 5 检查字典是否包含键 - Swift 代码示例

📅  最后修改于: 2022-03-11 15:00:58.604000             🧑  作者: Mango

代码示例2
if let value = self.dictionary["key"] {
    print(value) // prints value
}

// OR
extension Dictionary {
  func contains(key: Key) -> Bool {
    self[key] != nil
  }
}