无法映射整数

时间:2014-09-02 21:21:42

标签: clojure

(Integer. "1") ; => 1
(map Integer. ["1" "2"])
; CompilerException java.lang.ClassNotFoundException: Integer., compiling:(/tmp/form-init6181502527198258116.clj:1:1) 

我在这里做错了什么或者有什么问题?

1 个答案:

答案 0 :(得分:2)

Integer.new Integer相同。你想要:

(map #(Integer. %) ["1" "2"])