Clojure:java.lang.Character无法强制转换为clojure.lang.IFn
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Clojure:java.lang.Character无法强制转换为clojure.lang.IFn相关的知识,希望对你有一定的参考价值。
我只是想在Clojure中写一个简单的小猜谜游戏,我得到了这个错误。我无法看到一个角色在哪里被视为我的一个函数,因为结果输入也预测不应该存在这样的问题。这是代码:
(ns clojure.examples.hello
(:gen-class))
(ns clojure-noob.core)
(defn takeFst [x n]
(if (= n 0) () (cons (first x) (takeFst (rest x) (- n 1))))
)
(defn createSeq [elem n]
(if (= n 0) () (cons elem (createSeq elem (- n 1))))
)
(defn fnEquals? [n]
(fn [elem] (= elem n))
)
(defn removeEach [x elem]
(remove (fnEquals? elem) x)
)
(defn containsString? [s ch]
(not (empty? (filter true? (map = (createSeq ch (count s)) s))))
)
(defn akasztofa! [s lives]
(println s)
(if (and (not= () s) (not= lives 0))
(
(def guess (eval (read)))
(if (containsString? s guess) (akasztofa! (removeEach s guess) lives) (akasztofa! s (- lives 1)))
)
()
)
)
(akasztofa! "hab" 10)
我得到的输出是这样的:
hab
(a b)
(b)
()
Exception in thread "main" java.lang.ClassCastException:
java.lang.Character cannot be cast to clojure.lang.IFn, compiling:
(/home/cicaharcos/Documents/Clojure/First/akasztofa/main.clj:38:1)
我的输入是: h a b
以上是关于Clojure:java.lang.Character无法强制转换为clojure.lang.IFn的主要内容,如果未能解决你的问题,请参考以下文章
《Learn Clojure》直播第二期:Clojure 数据类型介绍