How should C bitflag enumerations be translated into C++? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T02:25:18Zhttp://stackoverflow.com/feeds/question/199606http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/199606/how-should-c-bitflag-enumerations-be-translated-into-c2How should C bitflag enumerations be translated into C++?Barry Kelly2008-10-14T00:45:35Z2008-10-14T01:06:56Z
<p>C++ is mostly a superset of C, but not always. In particular, while enumeration values in both C and C++ implicitly convert into int, the reverse isn't true: only in C do ints convert back into enumeration values. Thus, bitflags defined via enumeration declarations don't work correctly. Hence, this is OK in C, but not in C++:</p>
<pre><code>typedef enum Foo
{
Foo_First = 1<<0,
Foo_Second = 1<<1,
} Foo;
int main(void)
{
Foo x = Foo_First | Foo_Second; // error in C++
return 0;
}
</code></pre>
<p>How should this problem be handled efficiently and correctly, ideally without harming the debugger-friendly nature of using Foo as the variable type (it decomposes into the component bitflags in watches etc.)?</p>
<p>Consider also that there may be hundreds of such flag enumerations, and many thousands of use-points. Ideally some kind of efficient operator overloading would do the trick, but it really ought to be efficient; the application I have in mind is compute-bound and has a reputation of being fast.</p>
<p>Clarification: I'm translating a large (>300K) C program into C++, so I'm looking for an efficient translation in both run-time and developer-time. Simply inserting casts in all the appropriate locations could take weeks.</p>
http://stackoverflow.com/questions/199606/how-should-c-bitflag-enumerations-be-translated-into-c/199618#1996188Answer by Ferruccio for How should C bitflag enumerations be translated into C++?Ferruccio2008-10-14T00:49:43Z2008-10-14T01:06:56Z<p>Why not just cast the result back to a Foo?</p>
<pre><code>Foo x = Foo(Foo_First | Foo_Second);
</code></pre>
<p>EDIT: I didn't understand the scope of your problem when I first answered this question. The above will work for doing a few spot fixes. For what you want to do, you will need to define a | operator that takes 2 Foo arguments and returns a Foo:</p>
<pre><code>Foo operator|(Foo a, Foo b)
{
return Foo(int(a) | int(b));
}
</code></pre>
<p>The int casts are there to prevent undesired recursion.</p>
http://stackoverflow.com/questions/199606/how-should-c-bitflag-enumerations-be-translated-into-c/199619#1996190Answer by ejgottl for How should C bitflag enumerations be translated into C++?ejgottl2008-10-14T00:49:51Z2008-10-14T00:49:51Z<p>Either leave the result as an int or static_cast:</p>
<pre><code>Foo x = static_cast<Foo>(Foo_First | Foo_Second); // not an error in C++
</code></pre>
http://stackoverflow.com/questions/199606/how-should-c-bitflag-enumerations-be-translated-into-c/199623#1996232Answer by Mike G. for How should C bitflag enumerations be translated into C++?Mike G.2008-10-14T00:50:46Z2008-10-14T00:50:46Z<p>It sounds like an ideal application for a cast - it's up to you to tell the compiler that yes, you DO mean to instantiate a Foo with a random integer.</p>
<p>Of course, technically speaking, Foo_First | Foo_Second isn't a valid value for a Foo.</p>