Map.ContainsKey<'Key,'Value> 方法 (F#)
測試對應的網域中是否有某個項目。
**命名空間/模組路徑:**Microsoft.FSharp.Collections
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
member this.ContainsKey : 'Key -> bool (requires comparison)
// Usage:
map.ContainsKey (key)
參數
key
型別:'Key輸入索引鍵。
傳回值
如果對應包含指定的索引鍵,則為 true。
範例
下列程式碼將示範如何使用 ContainsKey 方法。
let map1 = Map.ofList [ (1, "one"); (2, "two"); (3, "three") ]
let findKeyAndPrint key (map : Map<int,string>) =
if (map.ContainsKey key) then
printfn "The specified map contains the key %d." key
else
printfn "The specified map does not contain the key %d." key
findKeyAndPrint 1 map1
findKeyAndPrint 0 map1
Output
平台
Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2
版本資訊
F# 核心程式庫版本
支援版本:2.0, 4.0,可攜式執行檔 (PE)。