Are there any practical differences between special forms and macros? In what do they differ?
|
|
The terms aren't quite synonymous, but they aren't exclusive either (this answer assumes Scheme):
So you could say that "special form" is a term that pertains to interface or semantics, whereas "macro" is a term that pertains to implementation. "Special form" means "these expressions are evaluated with a special rule," while "macro" means "here's an implementation of a special rule for evaluating some expressions." Now one important thing is that most Scheme special forms can be defined as macros from a really small core of primitives: Semantically speaking, the only thing that matters about an expression is what rule is used to evaluate it, not how that rule is implemented. So in that sense, it's not important whether a special form is implemented as a macro or a primitive. But on the other hand, the implementation details of a Scheme system often "leak," so you may find yourself caring about it... |
|||||||||||||
|
|
Lisp has certain language primitives, which make up Lisp forms:
So the most important practical difference between special forms and macros is this: special operators are built-in syntax and semantics. They can't be written by the developer. Macros can be written by the developer. |
||||
|
|
|
Some special forms are necessarily built-in to the Lisp language, while macros provide a means for extending the language with extra special forms. A macro is a rule for expanding a special form into code. |
|||||||||||||||||
|
|
In contrast to special forms, macro forms can be macroexpanded:
|
|||
|
|
|
For me the most practical difference has been in the debugger: Macros don't show up in the debugger; instead, the (typically) obscure code from the macro's expansion shows up in the debugger. It is a real pain to debug such code and a good reason to ensure your macros are rock solid before you start relying upon them. |
|||
|
|
the super short answer for the lazy You can write your own macroes any time you want, though you can't add special forms without recompiling clojure. |
|||
|
|