當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Swift Dictionary removeValue(forKey:)用法及代碼示例


實例方法

removeValue(forKey:)

從字典中刪除給定鍵及其關聯值。

聲明

@discardableResult mutating func removeValue(forKey key: Key) -> Value?
Key 符合 Hashable 時可用。

返回值

被刪除的值,或者 nil 如果鍵不在字典中。

參數

key

要刪除的鍵及其關聯值。

詳述

如果在字典中找到鍵,則此方法返回鍵的關聯值。刪除時,此方法會使與字典相關的所有索引無效。


var hues = ["Heliotrope": 296, "Coral": 16, "Aquamarine": 156]
if let value = hues.removeValue(forKey: "Coral") {
    print("The value \(value) was removed.")
}
// Prints "The value 16 was removed."

如果在字典中找不到鍵,removeValue(forKey:) 返回 nil


if let value = hues.removeValue(forKey: "Cerise") {
    print("The value \(value) was removed.")
} else {
    print("No value found for that key.")
}
// Prints "No value found for that key.""

可用版本

iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+

相關用法


注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 Dictionary removeValue(forKey:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。