W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
將兩個映射項合并為一個單獨的映射項。
以下是語法。
(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}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: