Is it legal to switch on a constant in C++? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:03:42Z http://stackoverflow.com/feeds/question/882249 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/882249/is-it-legal-to-switch-on-a-constant-in-c 3 Is it legal to switch on a constant in C++? Motti 2009-05-19T11:46:04Z 2009-05-19T13:01:50Z <p>I was just made aware of a bug I introduced, the thing that surprised me is that it compiled, is it legal to switch on a constant? </p> <p>Visual Studio 8 and <a href="http://www.comeaucomputing.com/tryitout/" rel="nofollow">Comeau</a> both accept it (with no warnings). </p> <pre><code>switch(42) { // simplified version, this wasn't a literal in real life case 1: std::cout &lt;&lt; "This is of course, imposible" &lt;&lt; std::endl; } </code></pre> http://stackoverflow.com/questions/882249/is-it-legal-to-switch-on-a-constant-in-c/882257#882257 2 Answer by Visage for Is it legal to switch on a constant in C++? Visage 2009-05-19T11:48:23Z 2009-05-19T11:48:23Z <p>Yes, its legal.</p> http://stackoverflow.com/questions/882249/is-it-legal-to-switch-on-a-constant-in-c/882258#882258 2 Answer by sharptooth for Is it legal to switch on a constant in C++? sharptooth 2009-05-19T11:48:38Z 2009-05-19T11:48:38Z <p>Yes, it's perfectly legal to switch on any integer expression. It's the same as <code>switch</code>ing on an integer value returned by a function - a construct used quite often.</p> http://stackoverflow.com/questions/882249/is-it-legal-to-switch-on-a-constant-in-c/882263#882263 16 Answer by ChrisF for Is it legal to switch on a constant in C++? ChrisF 2009-05-19T11:49:36Z 2009-05-19T11:49:36Z <p>Not everything that makes sense to the compiler makes sense!</p> <p>The following will also compile but makes no sense:</p> <pre><code>if (false) { std::cout &lt;&lt; "This is of course, imposible" &lt;&lt; std::endl; } </code></pre> <p>It's up to us as developers to spot these.</p> http://stackoverflow.com/questions/882249/is-it-legal-to-switch-on-a-constant-in-c/882264#882264 2 Answer by graham.reeds for Is it legal to switch on a constant in C++? graham.reeds 2009-05-19T11:50:09Z 2009-05-19T11:50:09Z <p>Yes, but why you'd want to (unless debugging) is another matter.</p> <p>It's similar to <code>if (0)</code> or <code>while (true)</code>.</p> http://stackoverflow.com/questions/882249/is-it-legal-to-switch-on-a-constant-in-c/882279#882279 15 Answer by Neil Butterworth for Is it legal to switch on a constant in C++? Neil Butterworth 2009-05-19T11:52:54Z 2009-05-19T13:01:50Z <p>It's not impossible that switching on a constant makes sense. Consider:</p> <pre><code>void f( const int x ) { switch( x ) { ... } } </code></pre> <p>Switching on a literal constant would rarely make sense, however. But it is legal.</p> <p><strong>Edit:</strong> Thinking about it, there is case where switching on a literal makes perfect sense:</p> <pre><code>int main() { switch( CONFIG ) { ... } } </code></pre> <p>where the program was compiled with:</p> <pre><code>g++ -DCONFIG=42 foo.cpp </code></pre> http://stackoverflow.com/questions/882249/is-it-legal-to-switch-on-a-constant-in-c/882385#882385 2 Answer by Nik for Is it legal to switch on a constant in C++? Nik 2009-05-19T12:15:18Z 2009-05-19T12:15:18Z <p>One good reason for this being legal is that the compiler might well be able to resolve the value at compile time, depending on what stage of development you're at.</p> <p>E.g. you might use something like this for debugging stuff:</p> <pre><code>int glyphIndex; ... #if CHECK_INVALID_GLYPH glyphIndex = -1; #endif switch (glyphIndex) ... </code></pre> <p>The compiler knows for certain that glyphIndex is -1 here, so it's as good as a constant. Alternatively, you might code it like this:</p> <pre><code>#if CHECK_INVALID_GLYPH const int glyphIndex = -1; #else int glyphIndex = GetGlyph(); #endif </code></pre> <p>You wouldn't really want to have to change the body of your switch statement just so you could make little changes like this, and the compiler is perfectly capable of rationalising the code to eliminate the parts that will never be executed anyway.</p>