vote up 6 vote down star
1

I've long been under the impression that 'goto' should never be used if possible. While perusing libavcodec (which is written in C) the other day, I noticed multiple uses of it. Is it ever advantageous to use 'goto' in a language that supports loops and functions? If so, why?

flag

17 Answers

vote up 18 vote down check

There are a few reasons for using the "goto" statement that I'm aware of (some have spoken to this already):

Cleanly exiting a function

Often in a function, you may allocate resources and need to exit in multiple places. Programmers can simplify their code by putting the resource cleanup code at the end of the function all all "exit points" of the function would goto the cleanup label. This way, you don't have to write cleanup code at every "exit point" of the function.

Exiting nested loops

If you're in a nested loop and need to break out of all loops, a goto can make this much cleaner and simpler than break statements and if-checks.

Low-level performance improvements

This is only valid in perf-critical code, but goto statements execute very quickly and can give you a boost when moving through a function. This is a double-edged sword, however, because a compiler typically cannot optimize code that contains gotos.

Note that in all these examples, gotos are restricted to the scope of a single function.

link|flag
vote up 0 vote down

In Perl, use of a label to "goto" from a loop - using a "last" statement, which is similar to break.

This allows better control over nested loops.

The traditional goto label is supported too, but I'm not sure there are too many instances where this is the only way to achieve what you want - subroutines and loops should suffice for most cases.

link|flag
I think the only form of goto that you would ever use in Perl is goto &subroutine. Which starts the subroutine with the current @_, while replacing the current subroutine in the stack. – Brad Gilbert Nov 5 '08 at 1:27
vote up 0 vote down

@jtyost2 : Why do you think that calling a function from another function using goto, would be simpler than exiting ?

Also, Couldn't we just call the function beta() in your example, get the results, and then return that out from the function ?

link|flag
vote up 2 vote down

The problem with 'goto' and the most important argument of the 'goto-less programming' movement is, that if you use it too frequently your code, although it might behave correctly, becomes unreadable, unmaintainable, unreviewable etc. In 99.99% of the cases 'goto' leads to spaghetti code. Personally, I cannot think of any good reason as to why I would use 'goto'.

link|flag
vote up 2 vote down

The rule with goto that we use is that goto is okay to for jumping forward to a single exit cleanup point in a function. In really complex functions we relax that rule to allow other jump forwards. In both cases we are avoiding deeply nested if statements that often occur with error code checking, which helps readability and maintance.

link|flag
vote up 11 vote down

Basically, due to goto's defective nature (and I believe that this is uncontroversial), it is only used to compensate for missing features. So the use of goto may actually be acceptable, but only if the language doesn't offer a more structured variant to obtain the same goal. Take Doubt's example:

The rule with goto that we use is that goto is okay to for jumping forward to a single exit cleanup point in a function.

This is true – but only if the language doesn't allow structured exception handling with cleanup code (such as RAII or finally), which does the same job better (as it is specially built for doing it), or when there's a good reason not to employ structured exception handling (but you will never have this case except at a very low level).

In most other languages, the only acceptable use of goto is to exit nested loops. And even there it is almost always better to lift the outer loop into an own method and use return instead.

Other than that, goto is a sign that not enough thought has gone into the particular piece of code.

link|flag
1  
Just curious here, but what about the case of using gotos for clean up code. By clean-up, I mean, not only deallocation of memory, but also, say error logging. I was reading through a bunch of posts, and apparently, no one writes code that prints logs.. hmm?! – shiva Apr 3 at 21:32
shiva: I'm not sure where you see a benefit of goto here. RAII and structured error handling are powerful mechanisms to facilitate logging. Admittedly, it's not done nearly enough because it always clutters the code. – Konrad Rudolph Apr 6 at 8:58
vote up 3 vote down

In C# switch statement doest not allow fall-through. So goto is used to transfer control to a specific switch-case label or the default label.

For example:

switch(value)
{
  case 0:
    Console.Writeln("In case 0");
    goto case 1;
  case 1:
    Console.Writeln("In case 1");
    goto case 2;
  case 2:
    Console.Writeln("In case 2");
    goto default;
  default:
    Console.Writeln("In default");
    break;
}

Edit: There is one exception on "no fall-through" rule. Fall-through is allowed if a case statement has no code.

link|flag
1  
Switch fall-through is supported in .NET 2.0 - msdn.microsoft.com/en-us/library/… – Rob Sep 16 '08 at 17:28
vote up 0 vote down

If so, why?

C has no multi-level/labelled break, and not all control flows can be easily modelled with C's iteration and decision primitives. gotos go a long way towards redressing these flaws.

Sometimes it's clearer to use a flag variable of some kind to effect a kind of pseudo-multi-level break, but it's not always superior to the goto (at least a goto allows one to easily determine where control goes to, unlike a flag variable), and sometimes you simply don't want to pay the performance price of flags/other contortions to avoid the goto.

libavcodec is a performance-sensitive piece of code. Direct expression of the control flow is probably a priority, because it'll tend to run better.

link|flag
vote up 3 vote down

One of the reasons goto is bad, besides coding style is that you can use it to create overlapping, but non-nested loops:

loop1:
  a
loop2:
  b
  if(cond1) goto loop1
  c
  if(cond2) goto loop2

This would create the bizarre, but possibly legal flow-of-control structure where a sequence like (a, b, c, b, a, b, a, b, ...) is possible, which makes compiler hackers unhappy. Apparently there are a number of clever optimization tricks that rely on this type of structure not occuring. (I should check my copy of the dragon book...) The result of this might (using some compilers) be that other optimizations aren't done for code that contains gotos.

It might be useful if you know it just, "oh, by the way", happens to persuade the compiler to emit faster code. Personally, I'd prefer to try to explain to the compiler about what's probable and what's not before using a trick like goto, but arguably, I might also try goto before hacking assembler.

link|flag
Well...takes me back to the days of programming FORTRAN in a financial information company. In 2007. – Marcin Oct 22 '08 at 7:18
vote up 13 vote down

Obligatory XKCD link

link|flag
vote up 5 vote down

#ifdef TONGUE_IN_CHEEK

Perl has a goto that allows you to implement poor-man's tail calls. :-P

sub factorial {
    my ($n, $acc) = (@_, 1);
    return $acc if $n < 1;
    @_ = ($n - 1, $acc * $n);
    goto &factorial;
}

#endif

Okay, so that has nothing to do with C's goto. More seriously, I agree with the other comments about using goto for cleanups, or for implementing Duff's device, or the like. It's all about using, not abusing.

(The same comment can apply to longjmp, exceptions, call/cc, and the like---they have legitimate uses, but can easily be abused. For example, throwing an exception purely to escape a deeply-nested control structure, under completely non-exceptional circumstances.)

link|flag
I think this is the only reason to use goto in Perl. – Brad Gilbert Nov 5 '08 at 1:28
vote up 0 vote down

In C# switch statement doest not allow fall-through.

Actually...it does. You can do it either way. It says so on the page you linked.

link|flag
vote up 0 vote down

The rule with goto that we use is that goto is okay to for jumping forward to a single exit cleanup point in a function.

In C++ I generally accomplish this using a do{}while():

do {
    // Step 1
    if (bStepFailed)
        break;

    // Step 2
    if (bStepFailed)
        break;

    // Further steps

} while(false)

// Cleanup code

This avoids an actual goto.

link|flag
This implies a loop which is not there, which can make code more confusing if you don't check the end first. – mccoyn Oct 8 '08 at 14:25
Very true, the first time I saw this usage I was quite confused, until I saw the bottom. It's best to place a comment at the top explaining it. – Chris Dec 8 '08 at 20:12
So you pervert another flow control statement in order to avoid using the statement that was designed to do what you need done. Brilliant. – Jim Mischel Mar 26 at 15:21
vote up 1 vote down

Edsger Dijkstra, a computer scientist that had major contributions on the field, was also famous for criticizing the use of GoTo. There's a short article about his argument on Wikipedia.

link|flag
vote up 0 vote down

In a Perl module, you occasionally want to create subroutines on the fly. The thing is, that once you have created the subroutine, how do you get to it. You could just call it, but then if the subroutine uses caller() it won't be as helpful as it could be.

Here is a quick example:

sub AUTOLOAD{
  my($self) = @_;
  my $name = $AUTOLOAD;
  $name =~ s/.*:://;

  *{$name} = sub{
    # the body of the code
  }

  goto &{$name};
}
link|flag
vote up 1 vote down

Just as well no one ever implemented the "COME FROM" statement....

link|flag
..except in INTERCAL! catb.org/~esr/intercal – aardvark Sep 24 '08 at 21:43
vote up 1 vote down

I've written more than a few lines of assembly language over the years. Ultimately, every high level language compiles down to gotos. Okay, call them "branches" or "jumps" or whatever else, but they're gotos. Can anyone write goto-less assembler?

Now sure, you can point out to a Fortran, C or BASIC programmer that to run riot with gotos is a recipe for spaghetti bolognaise. The answer however is not to avoid them, but to use them carefully.

A knife can be used to prepare food, free someone, or kill someone. Do we do without knives through fear of the latter? Similarly the goto: used carelessly it hinders, used carefully it helps.

link|flag
Perhaps you want to read why I believe this is fundamentally wrong at stackoverflow.com/questions/46586/… – Konrad Rudolph Sep 17 '08 at 18:46

Your Answer

Get an OpenID
or

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