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?
|
1
|
|
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
Just as well no one ever implemented the "COME FROM" statement.... |
||
|
|
|
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 Here is a quick example of where it can be helpful:
You can also use this form of
|
|||
|
|
|
|
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. |
||
|
|
|
|
In C++ I generally accomplish this using a
This avoids an actual goto. |
||||||||||
|
|
|
Actually...it does. You can do it either way. It says so on the page you linked. |
||
|
|
|
|
Perl has a
Okay, so that has nothing to do with C's (The same comment can apply to |
||
|
|
|
One of the reasons goto is bad, besides coding style is that you can use it to create overlapping, but non-nested loops:
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 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 |
|||
|
|
|
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. |
||
|
|
|
|
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:
Edit: There is one exception on "no fall-through" rule. Fall-through is allowed if a case statement has no code. |
||||||||
|
|
|
Basically, due to
This is true – but only if the language doesn't allow structured exception handling with cleanup code (such as RAII or In most other languages, the only acceptable use of Other than that, |
||||||
|
|
|
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. |
||
|
|
|
|
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'. |
||
|
|
|
|
@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 ? |
||
|
|
|
|
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. |
||
|

