返回Map中的键列表。
keys - 语法
以下是语法。
(keys hmap)
参数 - " hmap"是哈希键和值的映射。
返回值 - 返回Map中的键列表。
keys - 示例
(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)
参考链接
https://www.learnfk.com/clojure/clojure-maps-keys.html
标签:Map,clojure,keys,无涯,hmap,demokeys,Clojure,example From: https://blog.51cto.com/u_14033984/8042272