作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 http://www.learningclojure.com/2010/11/yet-another-way-to-write-factorial.html 上找到了这个代码,但我不明白 pop-task 是否/如何应该是线程安全的。不允许返回两次相同的头吗?
(def to-do-list (atom '()))
(defn add-task![t] (swap! to-do-list #(cons t %)))
(defn pop-task![] (let [h (first @to-do-list)] (swap! to-do-list rest) h))
最佳答案
或者你下降到一个较低的水平。
(def to-do-list (atom nil))
(defn add-task!
[t]
(swap! to-do-list conj t))
(defn pop-task!
[]
(let [[h & r :as l] @to-do-list]
(if (compare-and-set! to-do-list l r)
h
(recur))))
关于clojure - Clojure 中的线程安全流行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5727611/
我是一名优秀的程序员,十分优秀!