Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Should a developer avoid using break statements as much as possible in Java, C#, and C++, C. I know using goto statements are deemed as bad practice but what about break statements to exit a loop ahead of time

share|improve this question
1  
It depends on the context. Could you be more specific as to where you want to use a break statement? – Joe Nov 6 '12 at 20:50
1  
Instead of avoiding break statements to exit loops, you should avoid loops. – MaximR Nov 6 '12 at 20:51
1  
@AlexandreC. I don't think so. One major point people hold against goto is that one can use it to jump to and fro rather unpredictably. break and continue are very predictable and not very flexible. – Daniel Fischer Nov 6 '12 at 20:52
4  
@MaximR Seriously? Avoid loops? – Daniel Fischer Nov 6 '12 at 20:52
2  
@MaximR "collection algorithms" are usually loops hidden inside utility functions. – dystroy Nov 6 '12 at 20:57
show 11 more comments

closed as not constructive by Mat, Daniel Fischer, Sujay, Bo Persson, Randy Nov 6 '12 at 20:52

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 13 down vote accepted

No. The break statement is useful. Use it.

What some developers avoid is the break statement to a label (going outside the immediate loop or switch, in a manner somewhat similar to goto). But avoiding the ordinary break would make your code less readable in the general case.

share|improve this answer
Yep. You have to look at the reason FOR the 'rules'. Goto is shunned because it makes code hard to follow, but it's perfectly ok in (the rare) situations where it's the cleanest and clearest way to code something. Break is generally pretty clear, but if for some reason it isn't, restructure until you find a structure that IS clear. – kbelder Nov 6 '12 at 20:55

For imperative code, Break statements are useful but too many break instances especially one with labels hampers readability. Some languages like Scala where everything is expression avoid break semantics all together.

share|improve this answer
Although Scala now has scala.util.control.Breaks - see for example stackoverflow.com/a/2742941/699224 – DNA Nov 6 '12 at 21:58

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