我定义了以下 MyCache.clj
(ns abcd.MyCache
(:gen-class
:name "abcd.MyCache"
:init "init"
:constructors { [java.text.DateFormat][] }
:methods [ [now [] void] [myformat [long] String] ]
:state "state"
:main false))
(defn -init[format]
([[] (atom {:format format})]))
(defn -now[this] ( (:format @(.state this)) (System/currentTimeMillis)))
(defn -myformat[this time]
( (:format @(.state this) (new java.util.Date time))))
我使用 (compile 'abcd.MyCache) 成功编译了上述文件。
当我尝试使用生成的类时,如下所示..我收到错误。请帮忙。
user=> (new abcd.MyCache (new java.text.SimpleDateFormat "mmDDyyyy"))
IllegalArgumentException Key must be integer clojure.lang.APersistentVector.invoke (APersistentVector.java:265)