I'm having hard time understanding, why the compiler requires using break statement. It's not possible to miss it since the fall through is now allowed. I see the reason for the break in C or C++, but is it needed here.

Why it's not a built-in behavior to break after a case is over ? Isn't it just a syntax with no semantic?

Sorry, if it's a stupid question.

EDIT: The fall through is allowed only when the case is empty. When there is a statement there you can't omit the break statement. So, it's a different matter.

link|improve this question

3  
Probably just to keep the C lads / lasses happy as they migragte into a new language. I take your point though about why make it mandatory... – Martin Milan Mar 2 '10 at 13:09
1  
I think it's because it's inevitably going to be read by people not so familiar with c# but are familiar with the C/C++ syntax. Having the explicit break aids readability for everyone even though it serves no purpose. It's effectively backwards compatible. – Dolbz Mar 2 '10 at 13:17
1  
Pithy C++ community member answer: "Because the language requires it." – Greg D Mar 2 '10 at 14:52
1  
@Dolbz: Aiding readability is a completely valid purpose. – 280Z28 Mar 2 '10 at 15:36
Fallthrough is allowed for "empty cases" – phresnel Jan 31 at 9:19
show 1 more comment
feedback

4 Answers

up vote 7 down vote accepted

The compiler doesn't 'need' the break statements, it demands them.

This was a design decision, comparable with requiring the use of 'ref' when calling a method with a pass-by-reference parameter.

It keeps the code semantically close to C and C++ while eliminating the pitfall of what was always a debatable 'feature' of the C languages.

link|improve this answer
So, it just for clarification and has not any actual role ? – anthares Mar 2 '10 at 13:19
3  
@anthares: You could say that. The break could easily be inserted by the compiler, the programmer has no choice here. But 'readability' is an important role for language constructs. – Henk Holterman Mar 2 '10 at 13:23
It does serve a role. Switch is translated to goto statements in the IL and that is to have greater speed. lets say you have 10-20 cases; With if/else if you would have an average of 10 comparisons to get to the right case where as with the goto generated is much faster. – Thanos Papathanasiou Mar 2 '10 at 13:23
2  
@ ThanosPapathanasiou: that makes no sense. Eliminating the break does not make the compiler treat the switch any different. – Henk Holterman Mar 2 '10 at 13:25
3  
Thanos, I don't believe that either. The compiler can assume a break any time it needs to, and apply other optimizations as well. – Henk Holterman Mar 2 '10 at 14:21
show 3 more comments
feedback

The break statement in c# was a design decision by the creators of the language...Essentially they wanted an "unambiguous" break statement, a break statement that would only work one way. In short, they didn't want fall-through, and if they had just prevented fall-through without including "break," it would have broken backwards compatibility with c++.

link|improve this answer
OK why then this behavior is not built-in without the need of explicit break statement in the end of the cases. They can do it implicitly, right ? – anthares Mar 2 '10 at 13:17
2  
They wanted to be explicit about not falling through. The required break statement is a declaration that the code will not fall through. – Robert Harvey Mar 2 '10 at 13:18
feedback

Usually this kind of code is a bug:

// Contrived calculator demostration
decimal x = 5m;
decimal y = 10m;
decimal result = 0m;
string blah = "Divide";

// .. other code omitted

switch(blah) {
    case "Divide":
        result = x / y;

    case "Multiply":
        result = x * y;

    case "Add":
        result = x + y;

    case "Subtract":
        result = x - y;

    default:
        MessageBox.Show("Not a valid operation");

}

However, the compiler can't assume the missing breaks are a bug. As far as it knows, you really did want the cases to fall-through.

Simply assuming that breaks should be at the end of every case would just trade one bug for a different bug.

So, instead, the language designers disallowed fall-through from non-empty cases and throw an error if you omit them.

If you need code shared between non-empty cases, put it in a private (possibly static) method and call it from there.

One last note: Empty cases falling through is all that an empty case is expected to do, which is why it's allowed.

link|improve this answer
Actually the question was why language designers throw an error, instead of just implicitly break your case after it's done. – anthares Mar 2 '10 at 15:18
1  
But "The compiler can't assume the missing breaks are a bug." only because it is written this way. Since the fall-through in non empty cases is not allowed the question is way the compiler throws an error instead assume the only one allowed behavior. – anthares Mar 2 '10 at 15:27
the compiler can't assume the missing breaks are a bug. As far as it knows, you really did want the cases to fall-through. Simply assuming that breaks should be at the end of every case would just trade one bug for a different bug. – Powerlord Mar 2 '10 at 15:27
You can explicitly "fall-through" with a goto case statement: msdn.microsoft.com/en-us/library/13940fs2.aspx – 280Z28 Mar 2 '10 at 15:29
But this is different case. It is an instruction that will be executed before the end of the case. So, it will not mess with the proposed by me logic - "if reach the end of the case, put a break". – anthares Mar 2 '10 at 15:33
feedback

Fallthrough is allowed if the case expression is empty:

case Foo:  // fallthrough allowed.
case Bar:
    Console.WriteLine ("Foo or Bar");
    break; // required

That it is not allowed is a common misconception in the same league as "you can't assign values in if-conditions" *


* You can. The rule is just that only boolean values are allowed in if-conditions, and x=false with bool x; is a boolean value.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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