Why does C# allow code blocks without a preceding statement (e.g. if, else, for, while)?
void Main()
{
{ // any sense in this?
Console.Write("foo");
}
}
|
Why does C# allow code blocks without a preceding statement (e.g.
|
|||||||||||||||||||||
|
|
In the context you give, there is no significance. Writing a constant string to the console is going to work the same way anywhere in program flow.1 Instead, you typically use them to restrict the scope of some local variables. This is further elaborated here and here. Look at João Angelo’s answer and Chris Wallis’s answer for brief examples. I believe the same applies to some other languages with C-style syntax as well, not that they’d be relevant to this question though. 1 Unless, of course, you decide to try to be funny and create your own |
|||||
|
|
The I tend to use them in |
|||||||||||||||||||||
|
|
It is not so much a feature of C# than it is a logical side-effect of many C syntax languages that use braces to define scope. In your example the braces have no effect at all, but in the following code they define the scope, and therefore the visibility, of a variable: This is allowed as i falls out of scope in the first block and is defined again in the next:
This is not allowed as i has fallen out of scope and is no longer visible in the outer scope:
And so on and so on. |
|||||||||||||||||||
|
|
I consider Consider an if statement that exists out of a boolean expression followed by one statement. This would work:
This would work as well:
If I'm not mistaken this is called a block statement. Since The point that I'm trying to make is that |
||||
|
|
The general rule in C-syntax languages is "anything between
For all intents and purposes, it's as the language grammar included this:
That is, "a statement can be composed of (various things) or of an opening brace, followed by a statement list (which may include one or more statements), followed by a closed brace". I.E. "a Not allowing a |
||||
|
|
|
1Because...Its Maintain the Scope Area of the statement.. or Function, This is really useful for mane the large code..
|
|||
|
|
|
Because C++ (and java) allowed code blocks without a preceding statement. C++ allowed them because C did. You could say it all comes down to the fact that USA programme language (C based) design won rather than European programme language (Modula-2 based) design. (Control statements act on a single statement, statements can be groups to create new statements) |
||||
|
|