vote up 4 vote down star

I was wondering why C# requires me to use break in a switch statement although a fall-through semantics is by definition not allowed. hence, the compiler could generate the break at the end of each case-block and save me the hassle.

However, there is one scenario (which has already been discussed on this site) which I could come up with that might be the reason for the explicit usage of break:

switch (foo) {
    case 0:
    case 1:
        bar();
        break;
    default:
        break;
}

Here, the method bar() is called if foo has either the value 0 or 1.

This option would break in the truest sense of the word if the compiler would generate break statements by itself. Is this it, is this the reason why the break is compulsory or are there any other good reasons?

flag
4  
I personally think this was a horrible design decision by the C# team and one of the very few places they failed. – Chris Marisic Oct 14 at 19:26
@Chris: I highly recommend you read Eric's blog as linked in the accepted answer. It addresses several things which I'd guess are things that have annoyed you. – 280Z28 Oct 14 at 19:40
2  
And how would you have done it, Chris? – Eric Lippert Oct 14 at 21:51

5 Answers

vote up 22 vote down check

I suspect that the reason C# requires the developer to place a break at the end of each case is for clarity.

It avoids newcomers to the language from assuming that switch( ) in C# behaves like switch in C or C++ where fall through behavior occurs. Only in the cases of adjacent empty cases does fall through occur in C# - which is relatively obvious.

You may be interested in reading this article on Eric Lipperts blog.

link|flag
+1 for the link to Eric Lippert's, er, blog ;-). Yes, it might be clarity that drove this design decision. – Uwe Honekamp Oct 14 at 19:21
It also allows the JIT flexibility to rearrange the code for optimizations without worrying about breaking something due to fall-through. – Scott Dorman Oct 14 at 19:31
@ScottDorman - There is no fall-through... so reorganization wouldn't change anything if the break didn't need to be there. If there was fall-through, and code re-ordering could cause a problem, then the break wouldn't be required anyways. – RHSeeger Oct 14 at 19:59
Crikey, they made C# switch nearly as clear as VB Select Case! But not quite, IMHO case 0: case 1: is a bit wordy and confusing compared to Case 0, 1 – MarkJ Oct 15 at 12:48
vote up 0 vote down

My understanding of the matter is that it was included to match C++ syntax.

link|flag
4  
Hm, but AFAIK C++ does not require the break statement because C++ - like C - allows for case-blocks to fall through. – Uwe Honekamp Oct 14 at 19:17
vote up 2 vote down

By making break optional, you open yourself up to bugs like this:

switch (thing_result)
{
    case GOOD_THING:
        IssueReward();
        // UH-OH, missing break!
    case BAD_THING:
        IssuePunishment();
        break;
}

The C# language designers have tried to help programmers avoid pitfalls in the languages that came before it, generally by forcing the programmer to be more explicit (e.g. explicit use of the 'override' or 'new' keyword for implementing or shadowing virtual members).

link|flag
vote up 1 vote down

If you wouldn't need to append a break, there is a problem

switch (number)
{
    case 0:
    case 1:
        DoSomething();
}

What happens if number == 0? Is this an empty case which does not do anything or will DoSomething() be executed?

link|flag
There's no confusion at all. Case branches in C# do not fall through. Hence, the 0 case above would do nothing. The break statement in C# switches serves no purpose whatsoever, other than adding verbosity to make things clearer for people coming from other languages that had different rules. – RHSeeger Oct 14 at 19:57
1  
Sorry, but that's not true. When you add a break after the DoSomething() call, the C# code would be valid and for both cases, 0 and 1, the DoSomething() method would be called. – Oliver Hanappi Oct 14 at 20:05
vote up 18 vote down

The question presupposes a falsehood and therefore cannot be answered. The language does NOT require a break at the end of a switch section. The language requires that the statement list of a switch section must have an unreachable end point. "break" is just the most commonly used statement that has this property. It is perfectly legal to end a switch section with "return;", "goto case 2;", "throw new Exception();" or "while (true) {}" (or in some cases, continue, though that's usually a bad idea.)

The reason we require a statement list with an unreachable endpoint is to enforce the "no fall through" rule.

If your question is better stated as "why doesn't the compiler automatically fix my error when I fail to produce a switch section with a statement list with an unreachable end point, by inserting a break statement on my behalf?", then the answer is that C# is not a "make a guess about what the developer probably meant and muddle on through" sort of language. Some languages are -- JScript, for example -- but C# is not.

We believe that C# programmers who make mistakes want to be told about those mistakes so that they can intentionally and deliberately correct them, and that this is a good thing. Our customers tell us that they do not want the compiler to make a guess about what they meant and hope for the best. That's why C# also does not make a guess about where you meant to put that missing semicolon, as JScript does, or silently fail when you attempt to modify a read-only variable, as JScript does, and so on.

link|flag
2  
?? The accepted answer refers to Eric's blog and his own answer gets downvoted? Voted it up again. – SolutionYogi Oct 14 at 21:37
1  
Well, SolutionYogi, not everyone agrees with me. I have no reason to imagine everyone would; everyone is entitled to their own opinion about why the language was designed as it was. I appreciate the gesture, but really, don't stress about it. :) – Eric Lippert Oct 14 at 21:46
Well, Eric, I agree with you 100% and I want to chime in with my vote so that others do pay attention to your answer! And I am not at all stressing about it. I religiously follow your SO answers/comments as I learn a great deal from them. You are not only very knowledgeable, but you share your knowledge through your impeccable writing. I am a big fan of yours and whenever you are in NJ/NY, do let me know, I would like to buy you drinks/dinner! :) – SolutionYogi Oct 14 at 22:59
1  
Making existing C developers confused is a large number of points against a feature. A great many of our developers come to us from C, in part because the syntaxes are so superficially similar. – Eric Lippert Oct 15 at 17:15
4  
And then we'd have two ways to do almost exactly the same thing -- to do a language feature that is pretty old and clunky in the first place. Tweaking "switch" doesn't advance the state of the art in any way. And providing two confusingly-similar ways to do the same thing creates user confusion and large test costs for us. So that's unlikely to happen. – Eric Lippert Oct 20 at 17:45
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.