Clojure Maps dissoc

2018-09-28 16:52 更新

從映射中分離鍵值項(xiàng)。

語法

以下是語法。

(dissoc hmap key)

參數(shù) - 'hmap'是哈希鍵和值的映射。'key'是需要與HashMap分離的鍵。

返回值 - 返回具有解離鍵的地圖。

例子

以下是 Clojure 中 dissoc 的例子。

(ns clojure.examples.example
   (:gen-class))
(defn example []
   (def demokeys (hash-map "z" "1" "b" "2" "a" "3"))
   (println (dissoc demokeys "b")))
(example)

輸出

上述代碼輸出以下結(jié)果。

{z 1, a 3}
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號