Hello. I was just wondering why people use enums in C++ as constants while they
can use const.
Thanks
|
2
|
Hello. I was just wondering why people use enums in C++ as constants while they
can use Thanks
|
|||
|
|
|
|
An enumeration implies a set of related constants, so the added information about the relationship must be useful in their model of the problem at hand. |
||
|
|
|
|
It's partly because older compilers did not support the declaration of a true class constant
so had to do this
For this reason, many portable libraries continue to use this form. The other reason is that enums can be used as a convenient syntactic device to organise class constants into those that are related, and those that are not
vs
|
||
|
|
|
|
Some debuggers will show the enumeration name instead of its value when debugging. This can be very helpful. I know that I would rather see |
||
|
|
|
|
Bruce Eckel gives a reason in Thinking in C++:
[Edit] I think it would be more fair to link Bruce Eckel's site: http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html. |
|||
|
|
|
|
Before compiler vendors implemented the ISO/IEC 14882:1998 C++ standard, this code to define a constant in a class scope resulted in a compile error:
If the constant is an integer type, a kludgy work around is define it in an enum inside the class:
|
|||
|
|
|
I like the automatic behavior that can be used with enums, for example:
Then it is easy to loop until LAST, and when a new state (or whatever is represented) is added, the logic adapts.
Add something...
The loop adapts... |
||
|
|
|
|
Using an enum documents the valid choices in a terse manner and allows the compiler to enforce them. If they are using enum store global constants, like Pi, for example, then I don't know what their goal is. |
||||
|
|
|
enums also can be used as a type name. So you can define a function that takes an enum as a parameter, which makes it more clear what kinds of values should be given as arguments to the function, as compared to having the values defined as const variables and the function accepting just "int" as an argument. Consider:
versus:
|
|||
|
|
|
|
Enums are more descriptive when used. Consider:
versus
In addition, enums give a bit more type-safety, because
|
||
|
|
|
|
There's a historical reason too when dealing with template metaprogramming. Some compilers could use values from an enum, but not a static const int to instantiate a class.
Now you can do it the more sensible way:
Another possible reason, is that a static const int may have memory reserved for it at runtime, whereas an enum is never going to have an actual memory location reserved for it, and will be dealt at compile time. See this related question. |
||||
|
|
|
Enums are distinct types, so you can do type-oriented things like overloading with them:
|
|||
|
|
|
|
One reason is that
...versus...
|
||
|