Possible Duplicate:
GOTO still considered harmful?

Recently I've been reading "The C Programming Language" by K&R. I don't know much C, but I know a bit of Java, and on page page 65 (2nd ed.) the writers talk about Goto and how it is almost always unwarrented. Recently I've been writing a game, where the computer must show some primitive level of AI, where I wrote lots of for, whiles, and ifs in Java to emulate some sort of intelligence. As primitive as it was, it there were four-deep embedded "for loops" with if statements all over the place, and by the end I lost track of where to put the breaks and was breaking some loops while still looping through others making my game unplayable. Eventually, after much stress I sorted it.

My questiuon is: How bad is Goto?

If I had a goto in my game (Java doesnt really provide one) I wouldn't have wasted so much time fiddling with breaks and brackets. Is Goto really so bad? Why are they so hated?

link|improve this question

1  
Basically for the same reason as you lost yourself in too many nested looks and if conditions, cause it creates spaghetti code. It is really hard to maintain some code that jumps the execution constantly. To avoid having too many nested loops and conditional branches use functions to organise your code better. – Luis Dec 28 '10 at 15:02
1  
You would have ended up with the same problem if you had used goto statements. If you have that many nested loops etc., you should probably structure your code differently to avoid that. That also helps to understand what you actually wrote. :) – hangy Dec 28 '10 at 15:02
Really? I built the AI code over time, so my initial plan became maningless after various reconstructions and it just ended up spaghettified. But instead of break}break}break} I could have just jumped out of the loop, I would have been much happier. – JJG Dec 28 '10 at 15:06
1  
Among all the things "Considered Harmful", goto is definitely the least harmful. Global variables (especially any objects with constructors, including "singletons"), recursive make, and casting the return value of malloc are all much worse in my book, along with plenty other sins. – R.. Dec 28 '10 at 19:51
show 7 more comments
feedback

closed as exact duplicate by Alexandre C., AVD, Bill the Lizard Dec 28 '10 at 14:58

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted

more goto statements in your code less readable would be your code, my opinion

link|improve this answer
Same goes for functions. Proper use with goto does not harm readability, and I've seen codes. – Zippoxer Mar 8 at 16:46
feedback

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