使用 Clojure,我们有以下内容:
(defprotocol Greeter (hello [args] "Say hello"))
(extend-protocol Greeter
String
(hello [this] (str "Hello " this)))
(hello "world") ; "Hello world"
到目前为止,一切都很好。然后我们添加:
(defn hello [args] (str "Wassup " args "?"))
它将先前形式的输出更改为:
(hello "world") ; "Wassup world?"
有没有办法让协议优先于功能?