Clojure - Maps merge

将两个映射条目合并为一个映射条目。

语法

语法如下。

(merge hmap1 hmap2)

参数 − 'hmap1'是哈希键和值的映射。 'hmap2'是哈希键和值的映射,需要与第一个HashMap进行映射。

返回值 − 返回 hasmap1 和 hasmap2 的组合 HashMap。

示例

以下是 Clojure 中合并的示例。

(ns clojure.examples.example
   (:gen-class))
(defn example []
   (def demokeys (hash-map "z" 1 "b" 2 "a" 3))
   (def demokeys1 (hash-map "a" 2 "h" 5 "i" 7))
   (println (merge-with + demokeys demokeys1)))
(example)

输出

上面的代码产生以下输出。

{z 1, x 4, a 3, i 7, b 2, h 5}

❮ clojure_maps.html