What's the difference between using a define statement and an enum statement in C/C++? (and is there any difference when using them with either C or C++?)
Thanks
|
2
|
What's the difference between using a define statement and an enum statement in C/C++? (and is there any difference when using them with either C or C++?) Thanks
|
|||
|
|
|
|
Generally enums are preferred as they are type-safe and more easily discoverable. Defines are harder to locate and can have complex behavior, for example one piece of code can redefine a |
||||
|
|
|
Another advantage of an enum over a list of defines is that compilers (gcc at least) can generate a warning when not all values are checked in a switch statement. For example:
In the previous code, the compiler is able to generate a warning that not all values of the enum are handled in the switch. If the states were done as #define's, this would not be the case. |
||
|
|
|
|
In addition to the good points listed above, you can limit the scope of enums to a class, struct or namespace. Personally, I like to have the minimum number of relevent symbols in scope at any one time which is another reason for using enums rather than #defines. |
||
|
|
|
|
Enums are generally prefered over #define wherever it makes sense to use an enum:
The biggest difference is that you can use enums as types:
This gives you type-checking of parameters (you can't mix up openType and bufferSize as easily), and makes it easy to find what values are valid, making your interfaces much easier to use. Some IDEs can even give you |
||
|
|
|
|
Enumerations are part of the C language itself and have the following advantages. 1/ They may have type and the compiler can type-check them. 2/ Since they are available to the compiler, symbol information on them can be passed through to the debugger, making debugging easier. |
||
|
|
|
|
If you have a group of constants (like "Days of the Week") enums would be preferable, because it shows that they are grouped; and, as Jason said, they are type-safe. If it's a global constant (like version number), that's more what you'd use a |
||
|
|
|
|
define is a preprocessor command, it's just like doing "replace all" in your editor, it can replace a string with another and then compile the result. enum is a special case of type, for example, if you write:
there exists a new type called ERROR_TYPES. it is true that REGULAR_ERR yields to 1 but casting from this type to int should produce a casting warning (if you configure you're compiler to high verbosity). summary: they are both alike, but when using enum you profit the type checking and by using defines you simply replace code strings. |
|||
|