I don't think I fundamentally understand what a enum is, and when to use it. For example:
typedef enum { kCircle, kRectangle, kOblateSpheroid } ShapeType;
What is really being declared here?
|
6
|
I don't think I fundamentally understand what a enum is, and when to use it. For example: typedef enum { kCircle, kRectangle, kOblateSpheroid } ShapeType; 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 kCircle, Krectangle, or kOblateSpheroid. The values inside the enum (kCircle, etc) are visible outside the enum, though. It's important to keep that in mind (int i = kCircle is valid, for example). |
||
|
|