Why use #' with lambda?

前提是你 提交于 2019-12-09 09:05:02

问题


Why should I use #' together with lambda? It is usually written that way, so I guess it is good form. But these lines seem equal to me:

> (mapcar #'(lambda (x) (+ x 1)) '(1 2 3))
(2 3 4)
> (mapcar (lambda (x) (+ x 1)) '(1 2 3))
(2 3 4)

Anyone care to enlighten a beginner about the difference?


回答1:


#' is shorthand for function, which returns a pointer to a function (instead of applying it). lambda returns a function, and it's usual to want a pointer to that function. Since this is so common, there is also a macro (in variable space) that does it for you, which is called lambda as well. Both lines of code are identical.

Which is better comes down to the Lisp-1/Lisp-2 debate: in Common Lisp you can do either, thanks to the macro. As always, be consistent.




回答2:


It is different in various Lisp dialects. The following uses Common Lisp:

First #' is a short notation for (function ...). So the following are only textually different, but Common Lisp reads them as the same:

#'(lambda (x) (* x 2))

and

(function (lambda (x) (* x 2)))

#' is a readmacro, and transforms when Lisp code is read by the Lisp system.

If Lisp evaluates

(function (lambda (x) (* x 2)))

the Lisp system creates an function object and FUNCTION returns it as its value.

So, whenever you need a function as a value, then you need to write it like that. A function as a value is needed, when you want to pass it to another functions as an argument, when you want to return it from a function or when you want to store it in a variable. Examples:

(map #'(lambda (x) (* x 2)) '(1 2 3))

(defun (y) #'(lambda (x) (* x y)))

(defparameter *twice-fn* #'(lambda (x) (* x 2)))

Now, what is (lambda (x) (* x 2)) ?

It is two different things depending on context.

Lambda expression

The lambda expression can be used instead of a function name:

(function foo)   and    (function (lambda (x) (* x 2)))

and

(foo 17)    and  ((lambda (x) (* x 2)) 17)

Above two are legal Common Lisp syntax. There a lambda expression can be used directly.

Note that the following two forms are illegal in Common Lisp:

(#'(lambda (x) (* x 2)) 17)   ; illegal in Common Lisp

(function #'(lambda (x) (* x 2)))  ; illegal in Common Lisp

Macro

During the Common Lisp standardization process a macro LAMBDA has been added (it was not part of the first description, CLtL1, of Common Lisp). It makes it possible to write slightly shorter code. Example:

(lambda (x) (* x 2))

In above case LAMBDA is a macro. During macro expansion it will be expanded to:

(function (lambda (x) (* x 2)))

Remember that in above FUNCTION form, the inner lambda is part of a lambda expression, denotes the function and will not be expanded.

So, now the three examples from above can be written as:

(map (lambda (x) (* x 2)) '(1 2 3))

(defun (y) (lambda (x) (* x y)))

(defparameter *twice-fn* (lambda (x) (* x 2)))

It is slightly shorter, looks a little bit less cluttered and looks slightly more similar to Scheme code. It is just looking a bit better for programmers used to read and write Scheme code.

Summary

a) (function (lambda (x) (* x 2))) is the 'true' way to write code that returns a function as a value.

b) #'(lambda (x) (* x 2)) is a shorter notation of above

c) (lambda (x) (* x 2)) is even shorter, but uses macro expansion to create the form of a).



来源:https://stackoverflow.com/questions/908427/why-use-with-lambda

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!