Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Google's Go language is a new language. Therefor I was surprised to find that it has a 'goto' statement. I've always been taught that 'goto' statements are a thing of the past and evil for it occludes the actual flow of a program. Function (or methods if you will) are always a better way of controlling flow.

I must be missing something. Why and when is using 'goto' a good idea? Or why did Google include it?

share|improve this question
1  
There are times where you really need a goto statement. Goto's are evil only when used indiscriminately. For example, if it is very difficult, if not impossible, to write a Finite state machine parser withou goto statements. – xbonez Jun 16 '12 at 16:02
1  
It's not specific to Go, but for a good discussion on why languages retain the statement, and to see arguments against its use, check out this post. There are some good references linked in the question. Edit: here's another. – Cory Jun 16 '12 at 16:05
To save the OP from grepping through the provided SO discussions, here's the discussion on LKML which pretty much sums it up why goto is useful in certain cases. Read after studying @Kissaki's answer. – kostix Jun 16 '12 at 18:17

3 Answers

up vote 10 down vote accepted

When we actually check Gos source code (the standard library), we can see where gotos are actually well applied.

For example, in the math/gamma.go file, the goto statement is used:

  for x < 0 {
    if x > -1e-09 {
      goto small
    }
    z = z / x
    x = x + 1
  }
  for x < 2 {
    if x < 1e-09 {
      goto small
    }
    z = z / x
    x = x + 1
  }

  if x == 2 {
    return z
  }

  x = x - 2
  p = (((((x*_gamP[0]+_gamP[1])*x+_gamP[2])*x+_gamP[3])*x+_gamP[4])*x+_gamP[5])*x + _gamP[6]
  q = ((((((x*_gamQ[0]+_gamQ[1])*x+_gamQ[2])*x+_gamQ[3])*x+_gamQ[4])*x+_gamQ[5])*x+_gamQ[6])*x + _gamQ[7]
  return z * p / q

small:
  if x == 0 {
    return Inf(1)
  }
  return z / ((1 + Euler*x) * x)
}

The goto in this case saves us from introducing another (boolean) variable used just for control-flow, checked for at the end. In this case, the goto statement makes the code actually better to read and easier follow (quite in contrary to the argument against goto you mentioned).

Also note, that the goto statement has a very specific use-case. The language specification on goto states that it may not jump over variables coming into scope (being declared), and it may not jump into other (code-)blocks.

share|improve this answer
2  
Without goto, that code would've been less readable, or at least longer. That will surprise brainwashed Java programmers. – Zippoxer Jun 22 '12 at 10:25

Goto is a good idea when none of the built-in control features do quite what you want, and when you can express what you want with a goto. (It's a shame in these cases in some languages when you don't have a goto. You end up abusing some control feature, using boolean flags, or using other solutions worse than goto.)

If some other control feature (used in a reasonably obvious way) can do what you want, you should use it in preference to goto. If not, be bold and use goto!

Finally it's worth noting that Go's goto has some restrictions designed to avoid some obscure bugs. See these restrictions in the spec.

share|improve this answer

GOTO gets a bad rap, and its obvious that it should only be used when there is no other way.

The infamous GOTO is JMP in ASM and pretty much required. Of course, ancient BASIC required GOTO to get anything done. And probably popularized the name ( as opposed to "jump" ).

In C, you can still see it a lot in low-level network stuff. Some very popular introductory books used GOTO everywhere.

Obviously, GOTO isn't an elegant solution, and I would stay away from it when necessary.

When is a good time to use GOTO? When you have no other choice. In most modern languages, you do.

In terms of why Google added it, I would just say they were thinking "why not?" Its better to have the functionality in case it is needed, and just never use it.

If they didn't add GOTO for that reason, then it was added for a specific reason. GOTO can be useful, but most modern programming languages have better ways for breaking out of nested loops (ex. break) for example, or going to a cleanup section at the end of a function (ex. try/catch). All in all, try not to use it unless you need to, and you normally do not need to.

share|improve this answer
2  
I highly doubt they said “why not?” to anything. They have elaborated on how they wanted to keep Go clean and very specific, without clutter. – Kissaki Jun 16 '12 at 17:06
try/catch should not be used for breaking out of nested loops. – Seth Carnegie Jun 16 '12 at 17:26
"going to a cleanup section at the end of a function" sorry if it's hard to understand. – DGund Jun 16 '12 at 17:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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