typedef enum in Objective C - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T09:37:50Zhttp://stackoverflow.com/feeds/question/707512http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/707512/typedef-enum-in-objective-c10typedef enum in Objective CCraig2009-04-01T21:59:43Z2009-04-01T22:22:20Z
<p>I don't think I fundamentally understand what a enum is, and when to use it. For example:</p>
<p>typedef enum {
kCircle,
kRectangle,
kOblateSpheroid
} ShapeType;</p>
<p>What is really being declared here? </p>
http://stackoverflow.com/questions/707512/typedef-enum-in-objective-c/707524#7075243Answer by Brian Mitchell for typedef enum in Objective CBrian Mitchell2009-04-01T22:04:21Z2009-04-01T22:04:21Z<p>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).</p>
http://stackoverflow.com/questions/707512/typedef-enum-in-objective-c/707572#70757222Answer by Adam Rosenfield for typedef enum in Objective CAdam Rosenfield2009-04-01T22:22:20Z2009-04-01T22:22:20Z<p>Three things are being declared here: an anonymous enumerated type is declared, <code>ShapeType</code> is being declared a typedef for that anonymous enumeration, and the three names <code>kCircle</code>, <code>kRectangle</code>, and <code>kOblateSpheroid</code> are being declared as integral constants.</p>
<p>Let's break that down. In the simplest case, an enumeration can be declared as</p>
<pre><code>enum tagname { ... };
</code></pre>
<p>This declares an enumeration with the tag <code>tagname</code>. In C and Objective-C (but <em>not</em> C++), any references to this <em>must</em> be preceded with the <code>enum</code> keyword. For example:</p>
<pre><code>enum tagname x; // declare x of type 'enum tagname'
tagname x; // ERROR in C/Objective-C, OK in C++
</code></pre>
<p>In order to avoid having to use the <code>enum</code> keyword everywhere, a typedef can be created:</p>
<pre><code>enum tagname { ... };
typedef enum tagname tagname; // declare 'tagname' as a typedef for 'enum tagname'
</code></pre>
<p>This can be simplified into one line:</p>
<pre><code>typedef enum tagname { ... } tagname; // declare both 'enum tagname' and 'tagname'
</code></pre>
<p>And finally, if we don't need to be able to use <code>enum tagname</code> with the <code>enum</code> keyword, we can make the <code>enum</code> anonymous and only declare it with the typedef name:</p>
<pre><code>typedef enum { ... } tagname;
</code></pre>
<p>Now, in this case, we're declaring <code>ShapeType</code> to be a typedef'ed name of an anonymous enumaration. <code>ShapeType</code> is really just an integral type, and should only be used to declare variables which hold one of the values listed in the declaration (that is, one of <code>kCircle</code>, <code>kRectangle</code>, and <code>kOblateSpheroid</code>). You can assign a <code>ShapeType</code> variable another value by casting, though, so you have to be careful when reading enum values.</p>
<p>Finally, <code>kCircle</code>, <code>kRectangle</code>, and <code>kOblateSpheroid</code> are declared as integral constants in the global namespace. Since no specific values were specified, they get assigned to consecutive integers starting with 0, so <code>kCircle</code> is 0, <code>kRectangle</code> is 1, and <code>kOblateSpheroid</code> is 2.</p>