2024 Clojure 状态调查!中分享您的想法。

欢迎!请参阅关于页面以获取更多关于如何工作的信息。

0
Clojure

什么是(class =)和(type =)之间的区别?
谢谢!

1 答案

+1

被选中
 
最佳答案

通过使用REPL

=> (source type)
(defn type 
  "Returns the :type metadata of x, or its Class if none"
  {:added "1.0"
   :static true}
  [x]
  (or (get (meta x) :type) (class x)))
nil
=> (source class)
(defn class
  "Returns the Class of x"
  {:added "1.0"
   :static true}
  ^Class [^Object x] (if (nil? x) x (. x (getClass))))
nil
谢谢!
请示例说明:在(Something)的(class)和(type)输出不同的情况下。

:-)
by
嗨,Eugene。或许这能帮到你

    (&def sym (with-meta 'foo {:type :foo-type-tag}))
    (class sym)
    ;;=> clojure.lang.Symbol
    (type sym)
    ;;=> :foo-type-tag
by
这里有一个例子:https://docs.clojure.org/clojure.core/type#example-542692cfc026201cdc326e2d

以及以下是如何扩展上述 `sym` 例子来说明 `type` 可能有什么用

    => (defmethod print-method :foo-type-tag [v w] (.write w (str "Custom print:" v)))
    #object[clojure.lang.MultiFn 0x3a4ba480 "clojure.lang.MultiFn@3a4ba480"]
    => (println sym)
    Custom print:foo
    nil
...