- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以转换以下代码,使其使用 defprotocol
和 defrecord
而不是 defmulti
和 defmethod
?
(defmulti test-multimethod (fn [keyword] keyword))
(defmethod test-multimethod :foo [a-map]
"foo-method was called")
(defmethod test-multimethod :bar [a-map]
"bar-method was called")
(defmulti perimeter (fn [shape] (:shape-name shape)))
(defmethod perimeter :circle [circle]
(* 2 Math/PI (:radius circle)))
(defmethod perimeter :rectangle [rectangle]
(+ (* 2 (:width rectangle)) (* 2 (:height rectangle))))
(def some-shapes [{:shape-name :circle :radius 4}
{:shape-name :rectangle :width 2 :height 2}])
(defmulti area (fn [shape] (:shape-name shape)))
(defmethod area :circle [circle]
(* Math/PI (:radius circle) (:radius circle)))
(defmethod area :rectangle [rectangle]
(* (:width rectangle) (:height rectangle)))
(defmethod perimeter :square [square]
(* 4 (:side square)))
(defmethod area :square [square]
(* (:side square) (:side square)))
(def more-shapes (conj some-shapes
{:shape-name :square :side 4}))
(for [shape more-shapes] (perimeter shape))
(for [shape more-shapes] (area shape))
最佳答案
是的,你在协议(protocol)定义Shape
中声明你的函数,然后你在你的各种记录实现中定义你的实现Square
,Circle
等
(defprotocol Shape
(area [this])
(perimeter [this]))
(defrecord Square [side] Shape
(area [this] (* (:side this) (:side this)))
(perimeter [this] (* 4 (:side this))))
(defrecord Rect [w l] Shape
(area [this] (* (:l this) (:w this)))
(perimeter [this] (+ (:l this) (:l this) (:w this) (:w this))))
(def s (->Square 4))
(def r (->Rect 2 5))
(map area [s r]) ; '(16 10)
(map :side [s r]) ; '(4 nil)
(map :l [s r]) ; '(nil 5)
本质上这就像 OOP(但不可变),如果您熟悉的话。
尽管如此,关于 defmulti 实现的一个好处是,您通常可以序列化和反序列化您的 map 并按原样使用它们,而不必将它们具体化为特定的记录类。
关于clojure - 将 defmulti 转换为 defprotocol,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30252614/
快速clojure问题,我认为这主要与语法有关。如何根据参数的特定类型签名调度多方法,例如: (defn foo ([String a String b] (println a b))
似乎两者都可以用于定义您以后可以使用不同数据类型实现的函数。 AFAIK 的主要区别在于 defmulti用于 map 和defprotocol在记录上工作。 还有什么区别?使用其中一个有什么好处?
我错过了关于 defmulti 和 defmethod 的重要一点。我已经阅读了几本书对 defmulti 的解释,但我仍然感到困惑。 我想获得一个随机值,具体取决于它是交易还是像 100.00 这样
是否可以转换以下代码,使其使用 defprotocol 和 defrecord 而不是 defmulti 和 defmethod ? (defmulti test-multimethod (fn [k
我有一个 defmulti/defmethod 组,它采用像这样的成对参数...... (defmulti foo "some explanation" (fn [arg1 arg2] (mapv c
我想知道为什么使用defmulti和defmethod?有什么优点?你如何使用它?请解释一下代码中发生了什么。 最佳答案 在“一般术语”中,您可以将其称为类固醇的 if/else,而在“给我留下深刻印
开始编辑: 认罪!我道歉。 我在 Clojure 1.2.1 的 cake repl 中运行它,老实说它不起作用。现在它在退出 cake repl 和 cake compile 后就可以了,它也适用于
defmethod 和 defmulti 有什么区别?? 引用了这些链接。但是还是不清楚.. https://clojuredocs.org/clojure.core/defmulti https:/
我是一名优秀的程序员,十分优秀!