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
| 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.
|
No. The What some developers avoid is the |
|||
|
|
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. |
|||
|
gotois that one can use it to jump to and fro rather unpredictably.breakandcontinueare very predictable and not very flexible. – Daniel Fischer Nov 6 '12 at 20:52