clojure.set/intersection似乎使用向量的索引作为值。如果您意外地将一个向量作为参数传递之一,这会导致非常奇怪的行为。
`
ti.repl-init=> (clojure.set/intersection #{0 1} [2 2 2 2 2])
{0 1}
ti.repl-init=> (clojure.set/intersection [2 2 2 2] #{0 1})
{0 1}
ti.repl-init=> (clojure.set/intersection [0 1] [2 2 2 2])
[0 1]
ti.repl-init=> (clojure.set/intersection [2 2 2 2] [2 2 2 2])
[2 2 2 2]
ti.repl-init=> (clojure.set/intersection [3 3 3 ] [2 2 2 2])
[3 3 3]
ti.repl-init=> (clojure.set/intersection [55] [2 2 2 2])
ClassCastException clojure.lang.PersistentVector无法转换为 clojure.lang.IPersistentSet clojure.core/disj (core.clj:1476)
`
如果任何参数是列表,您将获得一个ClassCastException,这可能没有预期的明显。
`
ti.repl-init=> (clojure.set/intersection #{0 1} (list 2 2 2 2))
IllegalArgumentException contains?不支持类型: clojure.lang.PersistentList clojure.lang.RT.contains (RT.java:814)
`
如果所有参数都是列表,也会发生相同的情况