在 elisp 中,为什么调用 lambda 函数会起作用,但应用它会引发错误?
ELISP> (funcall (lambda ()))
nil
ELISP> (apply (lambda ()))
*** Eval error *** Invalid function: lambda
在 elisp 中,为什么调用 lambda 函数会起作用,但应用它会引发错误?
ELISP> (funcall (lambda ()))
nil
ELISP> (apply (lambda ()))
*** Eval error *** Invalid function: lambda
我的 emacs 给出了另一个错误:
*** Eval error *** Wrong number of arguments: apply, 1
我认为它解释了一切。
Apply 必须有参数,见 (describe-function) 结果:
apply is a built-in function in `C source code'.
(apply FUNCTION &rest ARGUMENTS)
Call FUNCTION with our remaining args, using our last arg as list of args.
Then return the value FUNCTION returns.
Thus, (apply '+ 1 2 '(3 4)) returns 10.
[back]