For instance, is the following possible:
#define definer(x) #define #x?
Thanks.
|
|
For instance, is the following possible:
Thanks.
|
||||
|
|
|
Though your syntax is invalid, the answer to your question is technically yes. But it can only be accomplished by nasty tricks that make your code unreadable and unmaintainable. See also: http://www.ioccc.org/years.html#1995_vanschnitz and http://www.ioccc.org/years.html#2004_vik2 |
||
|
|
|
|
No, you can't do that. You can reference one macro from another, but you cannot define one macro from another. |
||
|
|
|
|
No, you can't do that. |
||||||||||
|
|
|
You cannot nest C preprocessor directives. Luckily, it is almost never necessary. If you really need that kind of power, you will almost certainly be better off with another preprocessor that you run before handing off the code to the C compiler. For example:
Another useful trick is to isolate the trickery into a single header file, which is generated by a program you write yourself:
where foo.h will look like something like this:
If you tie this together with a Makefile, or some other automation, it will be pretty seamless and not trip up your development much. |
||
|
|
|
|
If you are trying to create a segment of preprocessor code that can be called multiple times to perform slightly different things, one (moderately awful) way you can do this is to isolate the code into a single One place where I've seen this be useful is in generating "smart" enumerations that can convert to/from their "stringized" forms (which is useful for I/O). You create a
and then later |
||||
|
|
|
#define definer(x) #define #x? #x is a stringification of x. You can't #define a string token. (#define "foo".) It has to be an identifier [a-zA-Z0-9_]* token. You can't nest #define's like that. You can't have a #define in a #define. You can have #if's inside #if blocks.
You are also somewhat limited as to the expressions you can use in #if macros. But you can sometimes work around that. For example:
Plus something like:
(Yes, I know about #include <stdint.h>. It's just an example.) |
||
|
|