It's usually fairly widely agreed that usability of switch control blocks is horrible since the programmer has to 'remember' to insert a break statement at the end of each block. Some languages have tackled this with implicit break statements, while others have disallowed fallthrough altogether.
I treat my case and break statements a little differently from convention and I'm wondering if I'm the only one. The below is javascript, but it could be any language with C-style switch blocks.
switch (LETTER) {
case "A":
DoSomethingA();
break;
case "B":
DoSomethingB();
break;
case "C":
DoSomethingC();
break;
default:
throw "Error";
}
Having the break indented at the same level as the case label instantly improves readability to me. Does any one else do this? Why doesn't everybody do this?
** I'd normally have marked this community wiki - feel free to do so if required.
{ A: DoSomethingA, B: DoSomethingB, C: DoSomethingC }[LETTER]();(Of course, make it less ugly; just small example.) – strager Dec 9 '10 at 2:04