简体   繁体   中英

How to update records in a ref map in Clojure?

Given the following scenario:

(defrecord Person [firstname lastname])
(def some-map (ref {}))

(dosync
  (alter some-map conj {1 (Person. "john" "doe")})
  (alter some-map conj {2 (Person. "jane" "jameson")}))

To change the firstname of "joe" to "nick", I do the following:

(dosync
  (alter some-map (fn [m]                   
                  (assoc m 1 
                       (assoc (m 1) :firstname "nick")))))

What is the idiomatic way of doing this in Clojure?

无需使用update-in,对于这种情况,assoc-in正是您想要的。

(dosync (alter some-map assoc-in [1 :firstname] "nick"))

Edit: For your example assoc-in is better, since you ignore the previous value. Keeping this answer for cases where you actually need the previous value:

The update-in is there to update nested structures:

(alter some-map update-in [1 :firstname] (constantly "nick"))

The last argument is a function on the value to be "replaced" (like assoc , it does not replace but returns a new structure.) In this case the old value is ignored, hence the constantly function that always returns "nick".

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM