Is it legal to switch on a constant in C++? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T22:03:42Zhttp://stackoverflow.com/feeds/question/882249http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/882249/is-it-legal-to-switch-on-a-constant-in-c3Is it legal to switch on a constant in C++?Motti2009-05-19T11:46:04Z2009-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 << "This is of course, imposible" << std::endl;
}
</code></pre>
http://stackoverflow.com/questions/882249/is-it-legal-to-switch-on-a-constant-in-c/882257#8822572Answer by Visage for Is it legal to switch on a constant in C++?Visage2009-05-19T11:48:23Z2009-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#8822582Answer by sharptooth for Is it legal to switch on a constant in C++?sharptooth2009-05-19T11:48:38Z2009-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#88226316Answer by ChrisF for Is it legal to switch on a constant in C++?ChrisF2009-05-19T11:49:36Z2009-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 << "This is of course, imposible" << 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#8822642Answer by graham.reeds for Is it legal to switch on a constant in C++?graham.reeds2009-05-19T11:50:09Z2009-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#88227915Answer by Neil Butterworth for Is it legal to switch on a constant in C++?Neil Butterworth2009-05-19T11:52:54Z2009-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#8823852Answer by Nik for Is it legal to switch on a constant in C++?Nik2009-05-19T12:15:18Z2009-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>