Normally when using a switch statement, you cannot define and initialize variables local to the compound statement, like
switch (a)
{
int b = 5; /* Initialization is skipped, no matter what a is */
case 1:
/* Do something */
break;
default:
/* Do something */
break;
}
However, since the switch statement is a statement like for or while, there is no rule against not using a compound statement, look here for examples. But this would mean, that a label may be used between the closing parenthesis after the switch keyword and the opening brace.
So in my opinion, it would be possible and allowed to use a switch statement like this:
switch (a)
default:
{
int b = 5; /* Is the initialization skipped when a != 1? */
/* Do something for the default case using 'b' */
break;
case 1: // if a == 1, then the initialization of b is skipped.
/* Do something */
break;
}
My question: Is the initialization necessarily performed in this case (a != 1)? From what I know of the standards, yes, it should be, but I cannot find it directly in any of the documents I have available. Can anyone provide a conclusive answer?
And before I get comments to that effect, yes, I know this is not a way to program in the real world. But, as always, I'm interested in the boundaries of the language specification. I'd never tolerate such a style in my programming team!
switchstatement may appear after the closing parenthesis until the end of the statement (usually compound), so thedefault:label outside the braces would be legal IMHO. Confusing, yes, definitely! But no missing braces. – Johan Bezem Jan 6 '12 at 11:18bis valid if thecase 1is taken? This is really no different togoto foo; { int b = 5; foo: ... }. – Oli Charlesworth Jan 6 '12 at 11:19a != 1(i.e. thedefault:case is taken)? I'd assume, yes, but I can find no specific clause, and I'm wondering if the general clause (initialize when entering a compound statement) is applicable in this situation. – Johan Bezem Jan 6 '12 at 14:17