vote up 1 vote down star

I'm wondering about instances when it makes sent to use #define and #if statements. I've known about it for a while, but never incorporated it into my way of coding. How exactly does this affect the compilation?

Is #define the only thing that determines if the code is included when compiled? If I have #define DEBUGme as a custom symbol, the only way to exclude it from compile is to remove this #define statement?

flag

0% accept rate

10 Answers

vote up 0 vote down

It's for conditional compilation, so you can include or remove bits of code based upon project attributes which tend to be:

  • Intended platform (Windows/Linux/XB360/PS3/Iphone.... etc)
  • Release or Debug (Generally logging, asserts etc are only included in a debug build)

They can also be used to disable large parts of a system quickly, for example, during development of a game, I might define

#define PLAYSOUNDS

and then wrap the final call to play a sound in:

#ifdef PLAYSOUNDS
// Do lots of funk to play a sound
return true;
#else
return true;

So it's very easy for me to turn on and off the playing of sounds for a build. (Typically I don't play sounds when debugging because it gets in the way of my personal music :) ) The benefit is that you're not introducing a branch through adding an if statement....

link|flag
vote up 0 vote down

Perhaps the most common usees of #define in C# is to differentiate between debug/release and different platforms (for example Windows and X-Box 360 in the XNA framework).

link|flag
vote up 2 vote down

Is #define the only thing that determines if the code is included when compiled? If I have #define DEBUGme as a custom symbol, the only way to exclude it from compile is to remove this #define statement?

You can undefine symbols as well

#if defined(DEBUG)
#undef DEBUG
#endif
link|flag
vote up 2 vote down

@Ed: When using C++, there is rarely any benefit for using #define over inline functions when creating macros. The idea of "greater speed" is a misconception. With inline functions you get the same speed, but you also get type safey, and no side-effects of preprocessor "pasting" due to the fact that parameters are evaluated before the function is called (for an example, try writing the ubiquitous MAX macro, and call it like this: MAX(x++, y).. you'll see what I'm getting at).

I have never had to use #define in my C#, and I very rarely use it for anything other that platform and compiler version checking for conditional compilation in C++.

link|flag
vote up 1 vote down

#define is used to define compile-time constants that you can use with #if to include or exclude bits of code.

#define USEFOREACH

#if USEFOREACH
    foreach(var item in items)
     {  
#else
    for(int i=0; i < items.Length; ++i)
     { var item = item[0];
#endif

       doSomethingWithItem(item);
     }
link|flag
vote up 2 vote down

In C# #define macros, like some of Bernard's examples, are not allowed. The only common use of #define/#ifs in C# is for adding optional debug only code. For example:

        static void Main(string[] args)
        {
#if DEBUG
            //this only compiles if in DEBUG
            Console.WriteLine("DEBUG")
#endif 
#if !DEBUG
            //this only compiles if not in DEBUG
            Console.WriteLine("RELEASE")
#endif
            //This always compiles
            Console.ReadLine()
        }
link|flag
vote up 1 vote down

I often find myself defining some things that are done repetitively in certain functions. That makes the code much shorter and thus allows a better overview.

But as always, try to find a good measure to not create a new language out of it. Might be a little hard to read for the occasional maintenance later on.

link|flag
vote up 2 vote down

They are really useful for debug logging. Since you dont want the debug logging code to be compiled into production builds you can define a logging macro which will not be included unless the debug symbol is given at compile time.

For example

#if definied(DEBUG)
  #define DEBUGLOG(message) printf("%s",message);
#else
  #define DEBUGLOG(message)
#end if
link|flag
vote up 1 vote down

Well, defines are used often for compile time constants and macros. This can make your code a bit faster as there are really no function calls, the output values of the macros are determined at compile time. The #if's are very useful. The most simple example that I can think of is checking for a debug build to add in some extra logging or messaging, maybe even some debugging functions. You can also check different environment variables this way.

Others with more C/C++ experience can add more I am sure.

link|flag
vote up 1 vote down

If you DEFINE a macro, during compilation any instance of that macro will be replaced with what you gave:

#include <stdio.h>

#define PI 3.141592654

int main() {
    printf("%f\n", PI);
}

You can define more complicated macros (always remember to use brackets - the x could be anything!):

#define PRINT(x) printf("%s\n", (x))
/* Then you could say PRINT("Hello, world.\n"); and it would
 * be replaced with printf("%s\n", "Hello, World\n");
 */

And check if something is defined:

#ifdef linux
/* if linux is defined, this will be compiled. It will be left out if not. */
#endif

Also useful for compiling out blocks of code:

#if 0
/* This code will never be included for compilation. */
#endif

Remember that the preprocessor always works at compile-time, never run-time (that is, it actually changes the file before compilation).

EDIT:

I just noticed you were referring to C#. There are better ways to almost everything listed above in a modern language like C#, though I think most will still work. Use only as a last resort.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.