I just noticed that you can not use standard math operators on an enum such as ++ or +=
So what is the best way to iterate through all of the values in a C++ enum?
|
5
|
|
|
|
|
|
The typical way is as follows:
Of course, this breaks down if the enum values are specified:
This illustrates that an enum is not really meant to iterate through. The typical way to deal with an enum is to use it in a switch statement.
If you really want to enumerate, stuff the enum values in a vector and iterate over that. This will properly deal with the specified enum values as well. |
|||
|
|
|
You can also overload the increment/decrement operators for your enumerated type. |
||
|
|
|
|
One of many approaches: When enum Just Isn't Enough: Enumeration Classes for C++. And, if you want something more encapsulated, try this approach from James Kanze. |
||||
|
|
|
If your enum starts with 0 and the increment is always 1.
If not I guess the only why is to create something like a
add the items, and use normal iterators.... |
||
|
|
|
|
C++ doesn't have introspection, so you can't determine this kind of thing at run-time. |
||
|
|
|
|
You can't with an enum. Maybe an enum isn't the best fit for your situation. A common convention is to name the last enum value something like MAX and use that to control a loop using an int. |
||
|
|