Clojure - 映射键



返回映射中的键列表。

语法

以下是语法。

(keys hmap)

参数 - 'hmap' 是哈希键和值映射。

返回值 - 返回映射中的键列表。

示例

以下是 Clojure 中 keyed 的示例。

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

输出

以上代码生成以下输出。

(z a b)
clojure_maps.htm
广告