C# switch variable initialization: Why does this code NOT cause a compiler error or a runtime error? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T14:25:29Zhttp://stackoverflow.com/feeds/question/864153http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/864153/c-switch-variable-initialization-why-does-this-code-not-cause-a-compiler-error4C# switch variable initialization: Why does this code NOT cause a compiler error or a runtime error?Jeremy Cron2009-05-14T15:51:02Z2009-05-14T16:17:21Z
<pre><code>...
case 1:
string x = "SomeString";
...
break;
case 2:
x = "SomeOtherString";
...
break;
...
</code></pre>
<p><br />
Is there something that I am not understanding about the switch statement in C#? Why would this not be an error when case 2 is used?
<br/>
Edit: This code works and doesn't throw an error.</p>
http://stackoverflow.com/questions/864153/c-switch-variable-initialization-why-does-this-code-not-cause-a-compiler-error/864165#864165-2Answer by Pat for C# switch variable initialization: Why does this code NOT cause a compiler error or a runtime error?Pat2009-05-14T15:52:59Z2009-05-14T15:52:59Z<p>move the string declaration to before the </p>
<pre><code>switch(value)
</code></pre>
<p>statement. Then assign x for each case.</p>
http://stackoverflow.com/questions/864153/c-switch-variable-initialization-why-does-this-code-not-cause-a-compiler-error/864179#8641797Answer by Lars A. Brekken for C# switch variable initialization: Why does this code NOT cause a compiler error or a runtime error?Lars A. Brekken2009-05-14T15:55:07Z2009-05-14T15:55:07Z<p>The documentation on <a href="http://msdn.microsoft.com/en-us/library/aa691132.aspx" rel="nofollow">MSDN</a> says : </p>
<blockquote>
<p>The scope of a local variable declared in a switch-block of a switch statement (Section 8.7.2) is the switch-block.</p>
</blockquote>
<p>Also, a similar question has been asked before:
<a href="http://stackoverflow.com/questions/222601/variable-declaration-in-c-switch-statement">Variable declaration in c# switch statement</a></p>
http://stackoverflow.com/questions/864153/c-switch-variable-initialization-why-does-this-code-not-cause-a-compiler-error/864183#86418312Answer by Noldorin for C# switch variable initialization: Why does this code NOT cause a compiler error or a runtime error?Noldorin2009-05-14T15:55:49Z2009-05-14T16:17:21Z<p>You have to be careful how you think about the <code>switch</code> statement here. There's <em>no creation of variable scopes</em> going on at all, in fact. Don't let the fact that just because the code within cases gets indented that it resides within a child scope.</p>
<p>When a switch block gets compiled, the <code>case</code> labels are simply converted into labels, and the appropiate <code>goto</code> instruction is executed at the start of the switch statement depending on the switching expression. Indeed, you can manually use <code>goto</code> statements to create "fall-through" situations (which C# does directly support), as <a href="http://msdn.microsoft.com/en-us/library/06tc147t%28VS.71%29.aspx" rel="nofollow">the MSDN page</a> suggests.</p>
<pre><code>goto case 1;
</code></pre>
<p>If you specifically wanted to create scopes for each case within the <code>switch</code> block, you could do the following.</p>
<pre><code>...
case 1:
{
string x = "SomeString";
...
break;
}
case 2:
{
string x = "SomeOtherString";
...
break;
}
...
</code></pre>
<p>This <em>requires</em> you to redeclare the variable <code>x</code> (else you will receive a compiler error). The method of scoping each (or at least some) can be quite useful in certain situations, and you will certainly see it in code from time to time.</p>
http://stackoverflow.com/questions/864153/c-switch-variable-initialization-why-does-this-code-not-cause-a-compiler-error/864186#8641860Answer by Syed Tayyab Ali for C# switch variable initialization: Why does this code NOT cause a compiler error or a runtime error?Syed Tayyab Ali2009-05-14T15:56:17Z2009-05-14T16:04:15Z<p>if are creating any local variable within case, you can not use them out side case.</p>
<pre><code>...
int opt ;
switch(opt)
{
case 1:
{
string x = "SomeString";
...
}
break;
case 2:
{
string x = "SomeOtherString";
...
}
break;
default:
{
//your code
}
break;
}
...
</code></pre>
http://stackoverflow.com/questions/864153/c-switch-variable-initialization-why-does-this-code-not-cause-a-compiler-error/864191#8641912Answer by Eric Lippert for C# switch variable initialization: Why does this code NOT cause a compiler error or a runtime error?Eric Lippert2009-05-14T15:56:32Z2009-05-14T15:56:32Z<blockquote>
<p>Is there something that I am not understanding about the switch statement in C#? </p>
</blockquote>
<p>Seems likely!</p>
<blockquote>
<p>Why would this not be an error when case 2 is used?</p>
</blockquote>
<p>It's not an error presumably because its a legal C# program that follows the rules laid down in the C# specification. </p>
<p>Perhaps a more fruitful way to approach the question is for you to explain precisely why you believe this should be an error. Preferably by referring to the section of the specification which you believe has been violated. </p>
http://stackoverflow.com/questions/864153/c-switch-variable-initialization-why-does-this-code-not-cause-a-compiler-error/864193#8641934Answer by Reed Copsey for C# switch variable initialization: Why does this code NOT cause a compiler error or a runtime error?Reed Copsey2009-05-14T15:56:38Z2009-05-14T15:56:38Z<p>There is no compiler error because the switch statement does not create a new scope for variables.</p>
<p>If you declare a variable inside of a switch, the variable is in the same scope as the code block surrounding the switch. To change this behavior, you would need to add {}:</p>
<pre><code>...
case 1:
// Start a new variable scope
{
string x = "SomeString";
...
}
break;
case 2:
{
x = "SomeOtherString";
...
}
break;
...
</code></pre>
<p>This will cause the compiler to complain. However, switch, on it's own, doesn't internally do this, so there is no error in your code.</p>
http://stackoverflow.com/questions/864153/c-switch-variable-initialization-why-does-this-code-not-cause-a-compiler-error/864207#8642071Answer by OrbMan for C# switch variable initialization: Why does this code NOT cause a compiler error or a runtime error?OrbMan2009-05-14T15:59:32Z2009-05-14T15:59:32Z<p>It looks like the scoping of variables is within the switch, not the case, probably because cases can be stacked. Notice if you try to reference x outside of the switch it will fail.</p>