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)的输出吗?

:-)
嗨Eugene。这可能有助于

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

下面将扩展现有的`som`示例来说明`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
...