以下为有效的 Clojure 代码(关注 extend-type (class (log-window-proxy nil))
,而非直接引用类字面量)
(defn- log-window-proxy [state]
(proxy [javax.swing.JTextArea clojure.lang.IDeref] []
(deref [] state)
(scrollRectToVisible [rect]
(if @(:auto-scroll? state)
(proxy-super scrollRectToVisible rect)))))
(defprotocol LogWindow
(log [this message])
(clear [this]))
(extend-type (class (log-window-proxy nil))
LogWindow
(log [this message]
(println "message" message))
(clear [this]
nil))
然而,当我们查看给定的 this
的 :tag
元数据时,它看起来有些奇怪的形式(因为它是调用链而非类字面量)
(-> (extend-type (class (log-window-proxy nil))
LogWindow
(log [this message]
(println "message" message))
(clear [this]
nil)) quote macroexpand last :log second ffirst meta)
;; => {:tag (class (log-window-proxy nil))}
所以,:tag 看起来像是一个函数调用。编译器最终会调用 (class (log-window-proxy ...
来获取一个可以当作类型提示使用的类吗?
否则,我担心这个 :tag 元数据无效,这可能会引起反射警告,并使第三方工具混淆。