Clojure 2024调查问卷中分享你的想法!

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

0
Clojure

`
user=> (defprotocol P (f [this ^long x]))
P
user=> (deftype T [] P (f [_ x] x))

<java.lang.Class class user.T>

user=> (f (T.) 5)

ClassCastException user$eval7289$fn7290$G7280__7297 cannot be cast to clojure.lang.IFn$OLO user/eval7313 (NO_SOURCE_FILE:1)
`

1 答案

0
...