以下是一个有效的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 元数据无效,这可能会导致反射警告,并且会使第三方工具产生困惑。