3

在 elisp 中,为什么调用 lambda 函数会起作用,但应用它会引发错误?

ELISP> (funcall (lambda ()))
nil
ELISP> (apply (lambda ()))
*** Eval error ***  Invalid function: lambda
4

2 回答 2

3

我的 emacs 给出了另一个错误:

*** Eval error ***  Wrong number of arguments: apply, 1

我认为它解释了一切。

于 2013-04-13T14:15:41.237 回答
3

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]
于 2013-04-13T16:49:58.510 回答