Clojure - Map 是否包含?



查看Map是否包含所需的键。

语法

以下是语法。

(contains hmap key)

参数 − ‘hmap’ 是哈希键值对的Map。‘key’ 是需要在Map中搜索的键。

返回值 − 如果键存在,则返回 true;否则返回 false。

示例

以下是 Clojure 中 contains? 的示例。

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

输出

以上代码产生以下输出。

true
false
clojure_maps.htm
广告