Clojure - 获取 Map 的值



返回映射到键的值,如果键不存在则返回 not-found 或 nil。

语法

以下是语法。

(get hmap key)

参数 - ‘hmap’ 是哈希键和值的映射。‘key’ 是需要返回值的键。

返回值 - 返回传递给 get 函数的键的值。

示例

以下是 Clojure 中 get 的示例。

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

输出

以上代码产生以下输出。

{z 1, b 2, a 3}
2
clojure_maps.htm
广告