vote up 14 vote down star
6

Been having a discussion on whirlpool about using break statements in for loops. I have been taught and also read elsewhere that break statements should only be used with switch statements and with while loops on rare occasions.

My understanding is that you should only use for loops when you know the number of times that you want to loop, for example do work on x elements in an array, and while loops should be used every other time. Thus a for loop with a break can be easily refactored into a while loop with a condition.

At my university, you will instantly fail an assignment if you use break anywhere but in a switch statement as it breaks the coding guildline of the university. As I'm still completing my software engineering degree I would like to know from people in the real world.

flag

27 Answers

vote up -9 vote down check

In the real-world, I look at every break statement critically as a potential bug. Not an actual bug, but a potential bug. I challenge the programmers I work with on every break statement to justify its use. Is it more clear? Does it have the expected results?

Every statement (especially every composite statement) has a post-condition. If you can't articulate this post-condition, you can't really say much about the program.

Example 1 -- easy to articulate.

while not X:
   blah blah blah
assert X

Pretty easy to check that this loop does that you expected.

Example 2 -- harder to articulate.

while not X:
   blah
   if something I forgot: 
      break
   blah blah
   if something else that depends on the previous things:
      break
   blah
assert -- what --?
# What's true at this point?  X?  Something?  Something else?
# What was done?  blah?  blahblah?

Not so easy to say what the post-condition is at the end of that loop. Hard to know if the next statements will do anything useful.

Sometimes (not always, just sometimes) break can be bad. Other times, you can make the case that you have loop which is simpler with a break. If so, I challenge programmers to provide a simple, two-part proof: (1) show the alternative and (2) provide some bit of reasoning that shows the post-conditions are precisely the same under all circumstances.

Some languages have features that are ill-advised. It's a long-standing issue with language design. C, for example, has a bunch of constructs that are syntactically correct, but meaningless. These are things that basically can't be used, even though they're legal.

break is on the hairy edge. Maybe good sometimes. Maybe a mistake other times. For educational purposes—it makes sense to forbid it. In the real world, I challenge it as a potential quality issue.

link|flag
1  
I would also add that BREAK is a substitute for a valid use of GOTO which is early loop termination which eliminates duplication which leads to a whole class of bugs. See my first post for the early loop exit pattern. Think reading file, getting fields from cursor, regex on string, etc... – Cervo Oct 19 '08 at 14:30
2  
foreach(Thing stuff in things) { if(stuff.Id == thingImLookingFor) { // do stuff break; } } – Quibblesome Oct 21 '08 at 20:06
1  
var thing; while (not IsThingImLookingFor(x)) next x; do stuff – Dustin Getz Oct 21 '08 at 20:08
1  
@kevchadders: A lot of people like to think of "break" as less confusing that a proper terminating condition. In general, it's very hard to construct a proof around loops with breaks. Loops with provable breaks can usually be refactored into something simpler. – S.Lott Mar 17 at 16:45
1  
@J S: It's intentionally hard to refactor the 2nd example. It requires a total rethinking of the algorithm to eliminate the partial results and incremental testing. Often there have to be some function and test condition variables added; the initial invariant is usually wrong in cases like this. – S.Lott Mar 20 at 9:52
show 24 more comments
vote up 58 vote down

These generalized rules are rubbish as far as I'm concerned. Use what the language allows in the real world as long as it aids readability.

You should use the language features that make sense to your situation. I can easily envisage a situation that has a code segment like:

while (x != 0) {
    // Do some calculations to set y.
    if (y == 0) break;
    // Do some calculations to set z.
    if (z == 0) break;
    // Do a large amount of work.
    if (some_other_condition) break;
    // Do even more work.
    x--;
}

Certainly that is possible to refactor into a form your university desires but it's likely to be less readable than the solution given.

I would file this 'rule' in the same place as:

1/ Don't use goto.

2/ Only exit from one point in a function.

Certainly your situation (and those two) can be abused but that comes with experience.

link|flag
4  
Bravo! Dogmatic adherence to strict guidelines sometimes does preclude the most elegant solutions. "Rules of Thumb" are not "Laws" for a reason. – dicroce Oct 19 '08 at 17:06
i agree with your premise ("do what increases readability"). i disagree with your conclusion ("breaks increase readability"). 'continue' increases readability by increasing statement locality and emphasizing linear execution. 'break' causes execution flow jumps and shatters loop encapsulation. – Dustin Getz Oct 21 '08 at 19:51
the loop you used as an example just begs to be refactored. At first glance, I would reasonably presume that when the loop is finished, x==0 and all indexes 0<i<Xinitial have been processed. To realize that this is not the case, I would have to parse the entire loop. – Dustin Getz Oct 21 '08 at 19:55
See McConnell, Steve. Code Complete, Second Edition. Microsoft Press © 2004. Chapter 16.2: Controlling the Loop. – Dustin Getz Oct 21 '08 at 20:25
3  
@Tim, apparently the rest of SO disagrees. Dogmatic adherence to rules without thinking is a sign of a weak mind (I'll take your ad hominem attack and raise you another :-). I would rather have readable code than the massive multi-condition stuff I've seen from some people following these rules. – paxdiablo Dec 8 '08 at 2:46
show 4 more comments
vote up 18 vote down

I don't see any harm in using break - it's useful and simple. The exception is when you have a lot of messy code inside your loop, it can be easy to miss a break tucked away in 4 levels of ifs, but in this case you should probably be thinking about refactoring anyway.

Edit: IMHO it's much more common to see break in a while than a for (although seeing continue in a for is pretty common) but that doesn't mean it's bad to have one in a for.

link|flag
vote up 13 vote down

I think it's a completely pompus and ridiculous rule to enforce.

I often use break within a for loop. If i'm searching for something in an array and don't need to keep searching once I find it, I will break out of that loop.

I agree with @Konrad Rudolph above, that any and all features should be used as and when the developer sees fit.

In my eye, a for loop is more obvious at a glance than a while. I will use a for over a while any day unless a while is specifically needed. And I will break from that for if logic requires it.

link|flag
I suppose it would be pompous to correct the spelling of ridiculous. – gbarry Nov 28 '08 at 18:29
@gbarry you're on the wrong site, you could maybe become an expert over at justanswer.com/archives/… – Greg B Dec 10 '08 at 16:01
vote up 12 vote down

My rule is to use any and all features of the language where it doesn't produce obscure or unreadable code.

So yes, I do on occasion use break, goto, continue

link|flag
vote up 8 vote down

I often use break inside a for loop.

The advantage of a for loop is that the iterator variable is scoped within the expression. If a language feature results in less lines of code, or even less indented code then IMHO it is generally a good thing and should be used to improve readability.

e.g.

for (ListIt it = ...; it.Valid(); it++)
{
  if (it.Curr() == ...)
  {
     .. process ...
     break;
   }
}

Rewriting this using a for loop would require several more lines, and leak the iterator out of the scope of the loop.

(Pedantic points: I only want to act on the first match, and the condition being evaluated isn't suitable for any Find(...) method the list has).

link|flag
1  
I agree with this usage. It is clearer to understand. The for loop controls the iterator. The only thing I might add is that this same pattern will often be used with continue as well. – Cervo Oct 19 '08 at 14:33
vote up 5 vote down

If it's a guideline that's enforced by the corrector, you don't really have the choice.

But as guidelines go, this one seems to be excessive. I understand the rationale behind it. Other people argue (in the same vein) that functions must only have one single exit point. This may be helpful because it can reduce control flow complexity. However, it can also greatly increase it.

The same is true for break in for loops. Since all loop statements are basically idempotent, one kind can always be substituted for any other. But just because you can doesn't mean that this is good. The most important coding guideline should always be “use your brain!”

link|flag
How exactly are "all loop statements idempotent"? – Draemon Oct 19 '08 at 13:20
I think what he meant to say is you can substitute one for the other. This is not always true because some language looping constructs are super restricted so the more general construct can do things the restricted one cannot do. But C while/for can be subbed. Do is harder to sub.... – Cervo Oct 19 '08 at 14:35
But you can substitute do with an early exit pattern (using break) or an additional firstExecution variable and a while (firstExecution || condition) and the first line in the loop being firstExecution = false. Again do is simpler :) – Cervo Oct 19 '08 at 14:36
much harder to substitute a while loop by the vb for x = 1 to n construct. Or foreach construct. You'd have to keep changing x or the list with an if statement....Some languages don't let the list in foreach be changed.... – Cervo Oct 19 '08 at 14:37
@Draemon: they're all Turing complete. Every for loop can be rewritten as a while loop and vice versa. Even foreach loops can always be substituted or used as substitute. CS 101. – Konrad Rudolph Oct 19 '08 at 15:55
vote up 5 vote down

I would argue your teachers' prohibition is just plain poor style. They are arguing that iterating through a structure is a fundamentally different operation than iterating through the same structure but maybe stopping early, and thus should be coded in a completely different way. That's nuts; all it's going to do is make your program harder to understand by using two different control structures to do essentially the same thing.

Furthermore, in general avoiding breaks will make your program more complicated and/or redundant. Consider code like this:

for (int i = 0; i < 10; i++)
{
   // do something
   if (check on i) 
        break;
   // maybe do something else
}

To eliminate the break, you either need to add an additional control boolean to signal it is time to finish the loop, or redundantly check the break condition twice, once in the body of the loop and once in the loop's control statement. Both make the loop harder to understand and introduce more opportunities for bugs without buying you any additional functionality or expressiveness. (You also need to hoist the declaration of i out of the loop's control structure, adding another scope around the entire mess.)

If the loop is so big you cannot easily follow the action of the break statement, then you'd be better off refactoring the loop than adding to its complexity by removing the break statement.

link|flag
vote up 3 vote down

I also learned at uni that any functions should have only a single point of exit, and the same of course for any loops. This is called structured programming, and I was taught that a program must be writable as a structogram because then it's a good design.

But every single program (and every single structogram) I saw in that time during lectures was ugly, hardly readable, complex and error-prone. The same applies to most loops I saw in those programs. Use it if your coding guidelines require it, but in the real world, it's not really bad style to use a break, multiple returns or even continue. Goto has seen much more religious wars than break.

link|flag
"any functions should have only a single point of exit" I talked about this in a blog post: blogs.conchango.com/anthonysteele/archive/… – Anthony Oct 21 '08 at 21:31
vote up 3 vote down

In a way I can understand the professor's point of view in this matter, but only as a way to teach the students how to solve problems in a (some kind of) standard fashion. Learn to master these rules, then you are free to break against them as you wish, if that will make the code easier to understand, more effective, or whatever.

link|flag
great insight! it's the same with music and art, to know the rules just so that you know better why you're breaking them – DarenW Oct 22 '08 at 3:26
vote up 3 vote down

Break is useful for avoiding nesting. Also there are many times that it is useful to prematurely exit a loop. It also depends on the languages. In languages like C and Java a for loop basically is a while loop with an initialization and increment expression.

is it better to do the following (assume no short circuit evaluation)

list = iterator on something
while list.hasItem()
  item = list.next()
  if item passes check
      if item passes other check
            do some stuff
            if item passes other check
                  do some more stuff
                  if item is not item indicating end of list
                        do some more stuff
                  end if
            end if
       end if
   end if
end while

or is it better just to say

while list.hasItem()
     item = list.next()
     if check fails continue
       .....
     if checkn fails continue
     do some stuff
     if end of list item checks break
end while

For me it is better to keep the nesting down and break/continue offer good ways to do that. This is just like a function that returns multiple times. You didn't mention anything about continue, but in my opinion break and continue are of the same family. They help you to manually change loop control and are great at helping to save nesting.

Another common pattern (I actually see this in university classes all the time for reading files and breaking apart strings) is

currentValue = some function with arguments to get value
while (currentValue != badValue) {
    do something with currentValue
    currentValue = some function with arguments to get value
}

is not as good as
while (1) {
    currentValue = some function with arguments to get value
    if (currentValue == badValue)
       break
    do something with currentValue
}

The problem is that you are calling the function with arguments to create currentValue twice. You have to remember to keep both calls in sync. If you change the arguments for one but not the other you introduce a bug. You mention you are getting a degree in software engineering, so I would think there would be emphasis on not repeating yourself and creating easier to maintain code.

Basically anyone who says any control structure is bad and completely bans it is being closed minded. Most structures have a use. The biggest example is GOTO. A lot of people abused it and jumped in the middle of other sub procedures, and basically jumped forwards/backwards all over the code and gave it a bad name. But GOTO has its uses. Using GOTO to exit a loop early was a good use, now you have break. Using GOTO to centralize exception handling was another good use. Now you have try/catch exception handling in many languages. In assembly there is only GOTO for the most part. And using that you can create a disaster. Or you can create our "structured" programming structures. In truth I generally don't use GOTO except in excel VBA because there is no equivalent to continue (that I know of) and error handling code in VB 6 utilizes goto. But I still would not absolutely dismiss the control structure and say never...

Unfortunately the reality is that if you don't want to fail, you will have to avoid using break. It is unfortunate that university doesn't have more open minded people in it. To keep the level of nesting down you can use a status variable.

status variable = true
while condition and status variable = true
  do stuff
  if some test fails
    status variable = false
  if status variable = true
     do stuff
  if some test fails
     status variable = false
  ....
end while

That way you don't end up with huge nesting.

link|flag
vote up 3 vote down

Most of the uses of break are about stopping when you've find an item that matches a criteria. If you're using C#, you can step back and write your code with a little more intent and a little less mechanism.

When loops like this:

foreach (var x in MySequence)
{
	if (SomeCritera(x))
	{
		break;
	}
}

start to look like:

from x in mySequence
where x => SomeCriteria(x)
select x

If you are iterating with while because the thing you're working on isn't an IEnumerable<T>, you can always make it one:

    public static IEnumerable<T> EnumerateList<T>(this T t, Func<T, T> next)
    {
        while (t != null)
        {
            yield return t;
            t = next(t);
        }
    }
link|flag
Your first two examples don't do the same thing. The first one iterates over every x in MySequence and stops on the first one for which SomeCriteria() is true. The second one iterates over all x in MySequence for which SomeCriteria() is true. I think you meant "continue" in the first example. – Robert Rossney Oct 21 '08 at 20:32
vote up 2 vote down

You are still in school. Time to learn the most important mantra that colleges require of you:
Cooperate and Graduate.

It's good that your school has a guideline, as any company you work for (worth a plugged nickle) will also have a coding guideline for whatever language you will be coding in. Follow your guideline.

link|flag
It's true but the other golden rule in a company is everything is up for negotiation. I often fight against stupid coding guidelines. And sometimes I get them changed when I show enough example. Or keep mentioning to the boss issues that crop up from the guidelines and increase the timeline... – Cervo Oct 19 '08 at 14:42
vote up 2 vote down

The rule makes sense only in theory. In theory for loops are for when you know how many iterations there are, and while loops are for everything else. But in practice when you are accessing something for which sequentil integers are the natural key, a for loop is more useful. Then if you want to terminate the loop before the final iteration (because you've found what you are looking for) then a break is needed.

Obey your teacher's restriction while you are writing assignments for him. Then don't worry about it.

link|flag
"Obey your teacher's restriction while you are writing assignments for him. Then don't worry about it." - that's the most intelligent thing I've heard for a while. It works for management as well in the real world :-) Upvoting.. – paxdiablo Oct 22 '08 at 1:24
vote up 1 vote down

I understand the issue. In general you want to have the loop condition define the exit conditions and have loops only have a single exit point. If you need proof of correctness for your code these are invaluable. In general, you really should try to find a way to keep to these rules. If you can do it in an elegant way, then your code is probably better off. However, when your code starts to look like spaghetti and all the gymnastics of trying to maintain a single exit point get in the way of readability, then opt for the "wrong" way of doing it.

I have some sympathy for your instructor. Most likely he just wants to teach you good practices without confusing the issue with the conditions under which those practices can be safely ignored. I hope that the sorts of problems he's giving you easily fit into the paradigm he wants you to use and thus failing you for not using them makes sense. If not, then you get some experience dealing with jerks and that, too, is a valuable thing to learn.

link|flag
vote up 1 vote down

break is an extremely valuable optimization tool and is especially useful in a for loop. For instance:

-- Lua code for finding prime numbers
function check_prime (x)
   local max = x^0.5;

   for v in pairs(p) do
      if v > max then break end;

      if x%v==0 then 
         return false
      end 
   end
   p[x] = true;
   return x 
end

In this case, it isn't practical to set up the for loop to terminate at the right moment. It is possible to re-write it as a while loop, but that would be awkward and doesn't really buy us anything in terms of speed or clarity. Note that the function would work perfectly well with out the break, but it would also be much less efficient.

The huge advantage of using break rather than refactoring into a while loop is that the edge cases are moved to a less important location in the code. In other words, the main condition for breaking out of a loop should be the only condition to avoid confusion. Multiple conditions are hard for a human to parse. Even in a while loop, I'd consider using break in order to reduce the number of break conditions to just one.


I'm aware that this is not the most efficient prime checker, but it illustrates a case where break really helps both performance and readability. I have non-toy code that would illustrate it, but require more background information to set it up.

link|flag
vote up 1 vote down

Out of curiosity, is there anything in your school's guidelines about using continue in loops?

link|flag
a loop with continue is analogous to a function with early return (e.g. factor the loop body into a method). early return typically helps linear execution and statement locality, two readability metrics defined in Code Complete. Break and continue are very different. – Dustin Getz Oct 21 '08 at 20:30
Oh, I'm not against using continue, or break for that matter. I'm just wondering. – mmacaulay Oct 21 '08 at 21:00
We are allowed to use continue and i do so on a regular basis – Lodle Oct 21 '08 at 23:44
vote up 1 vote down
  1. While in school, follow the defined guidelines. Some guidelines are arbitrary, and exist primarily for consistency, ease of grading, or to keep within the teacher's limited understanding. The best balance between maximizing learning and maximizing grades is to follow the guidelines.
  2. In the real world, the balance shifts to maximizing benefit for your employer. This usually requires a focus on readability, maintainability and performance. Since programmers rarely agree on what maximizes these qualities, employers typically attempt to enforce even more arbitrary guidelines. Here the stakes are keeping your job and possibly climbing to a leadership position where you can actually influence the standards.
link|flag
vote up 1 vote down

Another view: I've been teaching programming since 1986, when I was teaching assistant for the first time in a Pascal course, and I've taught C and C-like languages since, I think, 1991. And you would probably not believe some of the abuses of break that I have seen. So I perfectly understand why the original poster's university outlaws it. It is also a good thing to teach students that just because you can do something in a language, that doesn't mean that you should. This comes as a surprise to many students. Also, that there is such a thing as coding standards, and that they may be helpful -- or not.

That aside, I agree with many other posters that even if break can make code worse, it can also make it better, and, like any other rule, the no-breaks rule can and (sometimes) should be broken, but only if you know what you're doing.

link|flag
vote up 0 vote down

Ok, thanks for the answers its good to know what other people think. I use it in special occasions as pointed out already but most times using break can be avoided.

The example given was:

while (x != 0) {
    // Do some calculations to set y.
    if (y == 0) break;
    // Do some calculations to set z.
    if (z == 0) break;
    // Do a large amount of work.
    if (some_other_condition) break;
    // Do even more work.
    x--;
}

which can be refactored using else if statements

while (x != 0) {
    // Do some calculations to set y.
    if (y == 0)
    // Do some calculations to set z.
    else if (z == 0) 
    // Do a large amount of work.
    else if (some_other_condition)
    // Do even more work.
    x--;
}
link|flag
1  
See my comment below that starts @lodle.myopenid.com. Your refactoring is completely wrong. I give you the correct refactoring in pseudocode on the bottom. This is why it is dangerous to completely eliminate some structure from your repertoire. – Cervo Oct 19 '08 at 14:26
Agreed - the refactoring is bogus. The loop condition becomes much more complex, and you have to do 'if (y == 0) { ...nothing... } else { // Do some calculations to set z, etc. }' and the code nests horribly fast. – Jonathan Leffler Oct 19 '08 at 17:28
1  
the original loop is bogus. it needs refactoring, and not with if statements - the whole problem needs to be deconstructed. add some code where those comments are and it will be completely impossible to understand (debug, test, verify, maintain) – Dustin Getz Oct 21 '08 at 20:21
vote up 0 vote down

@lodle.myopenid.com

In your answer the examples do not match. Your logic is as follows in the example in the equation and example A in your answer:

while X != 0 loop
   set y
   if y == 0 exit loop
   set z
   if z == 0 exit loop
   do a large amount of work
   if some_other_condition exit loop
   do even more work
   x = x -1

example b:
while X != 0 loop
  set y
  if y == 0
    set z
  elseif z == 0
    do a large amount of work
  elseif (some_other_condition)
    do even more work
  x--

This is absolutely not the same. And this is exactly why you need to think about using break.

First of all in your second example you probably meant for the if var == 0 to be if var != 0, that is probably a typo.

  1. In the first example if y or z is 0 or the other condition is met you will exit the loop. In the second example you will continue the loop and decrement x = x - 1. This is different.
  2. You used if and else if. In the first example you set y, then check y, then set z then check z, then you check the other condition. In the second example you set y and then check y. Assuming you changed the check to y != 0 then if y is not 0 you will set z. However you use else if. You will only check Z != 0 (assuming you changed it) if y == 0. This is not the same. The same argument holds to other stuff.

So basically given your two examples the important thing to realize is that Example A is completely different from Example B. In trying to eliminate the break you completely botched up the code. I'm not trying to insult you or say you are stupid. I'm trying to overemphasize that the two examples don't match and the code is wrong. And below I give you the example of the equivalent code. To me the breaks are much easier to understand.

The equivalent of example A is the following

  done = 0;
  while X != 0 && !done {
    set y
    if y != 0 {
      set z
      if z != 0 {
        do large amount of work
        if NOT (some_other_condition {
          do even more work
          x = x - 1
        } else
          done = 1;
      } else
        done = 1;
    } else
      done = 1;
  }

As you can see what I wrote is completely different from what you wrote. I'm pretty sure mine is right but there may be a typo. This is the problem with eliminating breaks. A lot of people will do it quickly like you did and generate your "equivalent code" which is completely different. That's why frankly I'm surprised a software engineering class taught that. I would recommend that both you and your professor read "Code Complete" by Steve McConnell. See http://cc2e.com/ for various links. It's a tough read because it is so long. And even after reading it twice I still don't know everything in it. But it helps you to appreciate many software implementation issues.

link|flag
Your refactoring still isn't quite right - in fact it probably loops for ever as is y == 0, x isn't changed. You probably need an extra immediateExit boolean, or else set X to 0 if Y (or Z) is 0. – Douglas Leeder Oct 19 '08 at 20:56
sorry you are correct.......See it applies to me. I took more time to think than the original and I still screwed it up... – Cervo Oct 20 '08 at 2:04
I quoted the relevant part of CC2E below: the gist of that chapter is don't write garbage loops in the first place. the loop in the +30 post is indefensible garbage - and the fact that it's so hard to get rid of the breaks only proves it. – Dustin Getz Oct 21 '08 at 21:48
vote up 0 vote down

break typically does make loops less readable. once you introduce breaks, you can no longer treat the loop as a black box.

while (condition)
{
   asdf
   if (something) break;
   adsf
}

cannot be factored to:

while (condition) DoSomething();

From Code Complete:

A loop with many breaks may indicate unclear thinking about the structure of the loop or its role in the surrounding code. Excessive breaks raises often indicates that the loop could be more clearly expressed as a series of loops. [1]

Use of break eliminates the possibility of treating a loop as a black box1. Control a loop's exit condition with one statement to simplify your loops. 'break' forces the person reading your code to look inside to understand the loop's control, making the loop more difficult to understand. [1]

  1. McConnell, Steve. Code Complete, Second Edition. Microsoft Press © 2004. Chapter 16.2: Controlling the Loop.
link|flag
vote up 0 vote down

See the popular response above. The rules you are taught are garbage, hardly worth the time to speak them much less write them down and talk about them.

What is important here is that to complete your degree you have to follow a set of programming guidelines. follow those guidelines. In the real world it is quite possible that you will find jobs with programming rules or guidelines (unfortunately culled from the garbage taught at school).

1) code within the guidelines for that job/task

2) rise to a level of power within that job/task that you can change the programming guideline to something that is not garbage.

For the most part those programming guidelines are there to aid the professor in grading your work. Also to teach you a certain subject. If you use calculus to solve an algebra problem in an algebra class I would hope you fail the class. You are there to learn algebra.

Once you have the time to compile your programs to assembler and inspect what is REALLY going on, you will see the light. The break, continue, and goto are all directly mapped to jumps/branches, almost one to one, these are the cleanest coding structures you can find. While, for, etc these are abstract and bulky. Count how many "gotos" (branches) it takes in the assembler to avoid multiple return paths in a function. Count how many branches it takes if you use breaks or returns or continues throughout your code. Notice how much cleaner the code is with breaks and returns and continues? gotos are sketchy, although the single best operation in a programming language, because of the focus it has had from universities, not all compilers handle it properly. You may have to avoid it only because the programmer writing the compiler really doesnt understand them. breaks and continues are very good though, use them as much as possible (once you graduate).

link|flag
1  
"The break, continue, and goto are all directly mapped to jumps/branches ... While, for, etc these are abstract and bulky." I would write it as "while, for, etc have high-level abstraction and elegance". Why would I want to be closer to the hardware? – Dustin Getz Oct 21 '08 at 21:17
vote up 0 vote down

Out of curiosity, I took a little tour of the codebase I'm working on - about 100,000 lines of code - to see how I'm actually using this idiom.

To my surprise, every single usage was some version of this:

foreach (SomeClass x in someList)
{
   if (SomeTest(x))
   {
      found = x;
      break;
   }
}

Today, I'd write that:

SomeClass found = someList.Where(x => SomeText(x)).FirstOrDefault();

which, through the miracle of LINQ deferred execution, is the same thing.

In Python, it would be:

try:
   found = (x for x in someList if SomeTest(x)).next()
except StopIteration:
   found = None

(It seems like there should be a way to do that without catching an exception, but I can't find a Python equivalent of FirstOrDefault.)

But if you're not using a language that supports this kind of mechanism, then of course it's OK to use the break statement. How else are you going to find the first item in a collection that passes a test? Like this?

SomeClass x = null;
for (i = 0; i < SomeList.Length && x == null; i++)
{
   if (SomeTest(SomeList[i]))
   {
      x = SomeList[i];
   }
}

I think break is just a wee bit less crazy.

link|flag
ListIt it = ...; while (it.Valid() && test(*it)) it++; Process(it); – Dustin Getz Oct 21 '08 at 21:24
even better (python or any other language): extract method and use early return. tomayko.com/writings/…. – Dustin Getz Oct 21 '08 at 21:46
Nice. I like both of those. – Robert Rossney Oct 22 '08 at 5:23
vote up 0 vote down

Some languages enforce break usage. For example, in Python (a very readable language, isn't it?), it is a valid idiom the following:

while True:
  .. do something ..
  if loop_condition: break

This code is equivalent to do-while loop in other languages (which is hard to express in Python because of the block syntax constraints). It has also an obvious advantage that you can just move loop condition anywhere else in the loop. So I would argue this is really more readable than having two (or three) different syntaxes depending on whether your loop starts, ends with condition or has it in the middle.

link|flag
vote up 0 vote down

one more example could be , suppose any guy is trying to get job after completing his graduation , he daily go to diff. offices for job . A day when he will get the the job he will not go to offices for jobs anymore . he will break that routine.

link|flag
while(unemployed) job_search(); – Dustin Getz Aug 3 at 13:20
vote up -1 vote down

Most examples of "good" breaks in this thread can be expressed cleaner without break.

@Pax Diablo

i agree with your premise ("do what increases readability"). i disagree with your conclusion ("breaks increase readability"). 'continue' increases readability by increasing statement locality and emphasizing linear execution. 'break' causes execution flow jumps and shatters loop encapsulation.

the loop you used as an example just begs to be refactored. At first glance, I would reasonably presume that when the loop is finished, x==0 and all indexes 0 < i < Xinitial have been processed. To realize that this is not the case, I would have to parse the entire loop.

@Jay Bazuzi, you said this was good:

foreach (var x in MySequence)
        if (SomeCritera(x))
                break;

this is equivalent and more elegant:

var x;
while (valid(x) and not SomeCriteria(x)) 
    next x;

@Quarrelsome, you commented:

foreach(Thing stuff in things) 
{ 
  if(stuff.Id == thingImLookingFor) { // do stuff break; }
}

this is more readable:

var thing; 
while (valid(x) and not IsThingImLookingFor(x)) next x; 
do stuff

@Rob Walker, you said this was the best:

for (ListIt it = ...; it.Valid(); it++)
{
  if (it.Curr() == ...)
  {
     .. process ...
     break;
  }
}

how about this (exact same paradigm as the above two refactorings)

ListIt it = ...;
while (it.Valid() && it.Curr() != ...) it++;
Process(it);

@Cervo - one of your examples is weak, but the other example seems ok - the one necessary use of 'break' so far in this thread.

while list.hasItem()
     item = list.next()
     if check fails continue
       .....
     if checkn fails continue
     do some stuff
     if end of list item checks break
end while

i don't understand exactly what you mean by if end of list item checks break, but it seems that it isn't even necessary - the loop would naturally finish because there are no more items. if you don't mean to loop until the list is empty, why not use if NOT end of list item checks as your loop condition? no break, preserves loop encapsulation (the entire loop body could be factored into another function, with 'continue' mapped to early returns.

the one good use of 'break' in this thread that I can see

@Cervo - this is a good example.

currentValue = some function with arguments to get value
while (currentValue != badValue) {
    do something with currentValue
    currentValue = some function with arguments to get value
}

versus the better:

while (1) {
    currentValue = some function with arguments to get value
    if (currentValue == badValue)
       break
    do something with currentValue
}

I could only come up with this response, which is specific to a subset of languages, i think it's worse than your while(1).

while ( (input = getch()) != ‘\0’)
      Process(input);
link|flag

Your Answer

Get an OpenID
or

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