A programmer I respect said that in C code, #if and #ifdef should be avoided at all costs, except possibly in header files. Why would it be considered bad programming practice to use #ifdef in a .c file?
|
feedback
|
|
Hard to maintain. Better use interfaces to abstract platform specific code than abusing conditional compilation by scattering E.g.
Is not nice. Instead have files foo_w32.c:
foo_psx.c:
foo.h:
Then have 2 makefiles1: Minor amendment: If E.g. common.h:
foo_{w32, psx}.c:
While you may be repeating a function call to
| |||||||||||||||||
feedback
|
|
(Somewhat off the asked question) I saw a tip once suggesting the use of It was suggested to help avoid situations in which the section to be commented already had documentation comments and a solution like the following would have to be implemented:
Instead, this would be:
Seemed like a neat idea to me. Wish I could remember the source so I could link it :( | |||||||||||
feedback
|
| |||
|
feedback
|
|
My interpretation of this rule: Your (algorithmic) program logic should not be influenced by preprocessor defines. The functioning of your code should always be concise. Any other form of logic (platform, debug) should be abstractable in header files. This is more a guideline than a strict rule, IMHO. But I agree that c-syntax based solutions are preferred over preprocessor magic. | |||
|
feedback
|
|
CPP is a separate (non-Turing-complete) macro language on top of (usually) C or C++. As such, it's easy to get mixed up between it and the base language, if you're not careful. That's the usual argument against macros instead of e.g. c++ templates, anyway. But #ifdef? Just go try to read someone else's code you've never seen before that has a bunch of ifdefs. e.g. try reading these Reed-Solomon multiply-a-block-by-a-constant-Galois-value functions: http://parchive.cvs.sourceforge.net/viewvc/parchive/par2-cmdline/reedsolomon.cpp?revision=1.3&view=markup If you didn't have the following hint, it will take you a minute to figure out what's going on: There are two versions: one simple, and one with a pre-computed lookup table (LONGMULTIPLY). Even so, have fun tracing the #if BYTE_ORDER == __LITTLE_ENDIAN. I found it a lot easier to read when I rewrote that bit to use a le16_to_cpu function, (whose definition was inside #if clauses) inspired by Linux's byteorder.h stuff. If you need different low-level behaviour depending on the build, try to encapsulate that in low-level functions that provide consistent behaviour everywhere, instead of putting #if stuff right inside your larger functions. | |||||||||
feedback
|
|
The conditional compilation is hard to debug. One has to know all the settings in order to figure out which block of code the program will execute.
I once spent a week debugging a multi-threaded application that used conditional compilation. The problem was that the identifier was not spelled the same. One module used
I a big proponent of letting the | |||
feedback
|
A reasonable goal but not so great as a strict ruleThe advice to try and keep preprocessor conditionals in header files is good, as it allows you to select interfaces conditionally but not litter the code with confusing and ugly preprocessor logic. However, there is lots and lots and lots of code that looks like the made-up example below, and I don't think there is a clearly better alternative. I think you have cited a reasonable guideline but not a great gold-tablet-commandment.
| ||||
feedback
|
|
If your code will be compiled with different C compilers, and you use compiler-specific features, then you may need to determine which predefined macros are available. | |||||
feedback
|
|
By all means, favor abstraction over conditional compilation. As anyone who has written portable software can tell you, however, the number of environmental permutations is staggering. Some design discipline can help, but sometimes the choice is between elegance and meeting a schedule. In such cases, a compromise might be necessary. | |||
|
feedback
|
|
It's true that #if #endif does complicate the reading of the code. However I have seen a lot of real world code that have no issues using this and are still going strong. So there may be better ways to avoid using #if #endif but using them is not that bad if proper care is taken. | |||
|
feedback
|