macro expansion: to quote the body forms or not?

我的未来我决定 提交于 2019-12-05 20:50:07

You example may be confusing because

  1. message both displays a message and returns it.
  2. strings (like "bar") are self-evaluating.

Instructive Example

(defconst zzz 123)
(defmacro zzz1 (arg)
  `(insert (format "arg is: %s" ,arg)))
(defmacro zzz2 (arg)
  (insert (format "arg is: %s" arg)))

Evaluate the code above using C-x C-e after each of the 3 forms.

Now evaluate these:

First version: (zzz1 zzz)

The interpreter...

  1. calls the macro function of zzz1
  2. the macro function returns the form (insert (format "arg is: %s" zzz))
  3. the interpreter evaluates the form, and inserts "arg is: 123" into the current buffer, and returns nil (seen in the echo area at the bottom)

Second version: (zzz2 zzz)

The interpreter...

  1. calls the macro function of zzz2
  2. the macro function inserts "arg is: zzz" in the current buffer and returns nil
  3. the interpreter evaluates nil to nil (seen in the echo are at the bottom)

The bottom line

The most important "take-away" here is that macros are just functions which operate on code before the interpreter (of compiler) kicks in.

These functions take their arguments unevaluated (i.e., in both zzz1 and zzz2, arg is zzz, not 123).

They are evaluated like any other lisp function (e.g., they can have macro forms in their bodies; the body is wrapped in an implicit progn; &c).

Their return value is evaluated by the interpreter instead of the original form.

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