I don't think I fundamentally understand what an enum is, and when to use it.
For example:
typedef enum {
kCircle,
kRectangle,
kOblateSpheroid
} ShapeType;
What is really being declared here?
|
I don't think I fundamentally understand what an For example:
What is really being declared here? |
|||||||||||||
|
|
Three things are being declared here: an anonymous enumerated type is declared, Let's break that down. In the simplest case, an enumeration can be declared as
This declares an enumeration with the tag
In order to avoid having to use the
This can be simplified into one line:
And finally, if we don't need to be able to use
Now, in this case, we're declaring Finally, |
|||||||||||||||||||||
|
|
A user defined type that has the possible values of |
||||
|
|
|
A enum declares a set of ordered values - the typedef just adds a handy name to this. The 1st element is 0 etc.
The above is just a enumeration of shapeType tags. |
||||
|
|
|
Apple recommends defining enums like this since Xcode 4.4:
They also provide a handy macro NS_ENUM:
These definitions provide stronger type checking and better code completion. I could not find an official documentation of NS_ENUM, but you can watch "Modern Objective-C" video from WWDC 2012 session here. |
|||||
|
|
Enum is user defined data type. ENUMERATED DATA TYPES Enumerated data type variables can only assume values which have been previously declared.
In the above declaration, month is declared as an enumerated data type. It consists of a set of values, jan to dec. Numerically, jan is given the value 1, feb the value 2, and so on. The variable this_month is declared to be of the same type as month, then is assigned the value associated with feb. This_month cannot be assigned any values outside those specified in the initialization list for the declaration of month. |
||||
|
|
|
The enum (abbreviation of enumeration) is used to enumerate a set of values (enumerators). A value is any abstract thing represented by a symbol (an word). For example a basic enum could be
This enum is called anonymous because you do not have a symbol to name it. But it is still perfectly correct. Just use it like this
Ok. The life is beautiful and everything goes well. But one day you need to reuse this enum to define a new variable to store myGrandFatherPantSize, then you write:
But then you have a compiler error "redefinition of enumerator". Actually the problem is that the compiler is not sure that you first enum and your second describe the same thing. Then if you want to reuse the same set of enumerators (here xs...xxxxl) in several places you must tag it with a unique name. The second time you use this set you just have to use the tag. But don't forget that this tag does not replace the enum word but just the set of enumerators. Then take care to use enum as usual. Like this:
you can use it in a parameter definition as well:
You could say that rewriting enum everywhere is not convenient and makes the code looks a bit strange. You are right. A real type would be better. This is the final step of our great progression to the summit. By just adding a typedef let's transform our enum in a real type. Oh a last thing, typedef is not allowed within your class. Then define your type just above. Do it like this:
Remember that the tag is optional. Then since here in that case, we do not to tag the enumerators but just to define a new type. Then we don't really need it anymore.
If you are developing in ObjectiveC with XCode I let you discover some nice macros prefixed with NS_ENUM. That should help you to define good enums easily and moreover will help the static analyzer to do some interesting checks for you before to compile. Good Enum ! |
|||
|
|