3

我目前正在编写数量未定义的函数,因此我在 clojure.core 等中寻找示例。

这是例如comp(clojure.core)的定义

(defn comp
  "Takes a set of functions and returns a fn that is the composition
  of those fns.  The returned fn takes a variable number of args,
  applies the rightmost of fns to the args, the next
  fn (right-to-left) to the result, etc."
  {:added "1.0"
   :static true}
  ([] identity)
  ([f] f)
  ([f g] 
     (fn 
       ([] (f (g)))
       ([x] (f (g x)))
       ([x y] (f (g x y)))
       ([x y z] (f (g x y z)))
       ([x y z & args] (f (apply g x y z args)))))
  ([f g & fs]
     (reduce1 comp (list* f g fs))))

如您所见,对于 arities [fg],代码详细说明了 2 和 3 个参数 (xy ; x, y, z) 的值,即使它可以直接跳转到 [x & args]。

有什么性能原因吗?或者它是一个约定?我想调用apply可能会影响性能,我不知道。

我们在现实生活中通常最多使用3D函数和2个函数的组合,也许是因为这个。

谢谢

4

1 回答 1

5

Clojure 的核心库通常以不是特别惯用的方式实现,特别是出于性能原因。如果您正在编写一个对程序中大多数代码行至关重要的函数,您也可以这样做,但通常这并不优雅或特别不建议这样做。

于 2016-05-17T08:29:46.630 回答