我想通过proxy
生成一个类(不是对象),稍后将实例化该类。
我发现的Clojure代理方法的例子似乎主要涉及最常见的java内部类场景,即当我们只定义一个类时,因为我们想要创建它的实例。
在我的例子中,我想定义一个真正的类 - 一个可以在以后加载的类。但是我想定义它而不必使用gen-class
的复杂性来编译它。
这有可能吗?或gen-class
是否需要?
答案 0 :(得分:1)
如果定义Clojure Protocol然后创建一个实现该协议的类,则可以在以后创建简单类的实例。
(defprotocol myProtocol
(doStuff [this x y])
(getA [this])
(setA [this n]))
(deftype Foo [ ^:unsynchronized-mutable a]
myProtocol
(doStuff [this x y] (+ x y a))
(getA [this] a)
(setA [this n] (set! a n)))
(def a (Foo. 42))
user> (.getA a)
42
user> (.setA a 41)
41
user> (.getA a)
41
user> (.doStuff a 3 4)
48
user> (class a)
user.Foo
创建的类位于与名为deftype
的名称空间同名的包中