Clojure Maps merge

2018-09-28 16:52 更新

將兩個映射項合并為一個單獨的映射項。

語法

以下是語法。

(merge hmap1 hmap2)

參數(shù) - 'hmap1'是哈希鍵和值的映射。'hmap2'是哈希鍵和值的映射,需要使用第一個HashMap進(jìn)行映射。

返回值 - 返回hasmap1和hasmap2的組合HashMap。

例子

以下是Clojure中的merge的例子。

(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)

輸出

上述代碼輸出以下結(jié)果。

{z 1, x 4, a 3, i 7, b 2, h 5}
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號