分享您的想法,请参加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
谢谢!
您能写一个例子,使得(class Something)与(type Something)的输出不同吗?

:-)
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
...