I have a program in which i need to break out of a large bunch of nested for loops. So far, the way most people have been telling me to do it is to use an ugly goto in my code.
Now, if i create a bunch of local stack (i think that's what they are called, if not, i mean just regular variables without using the new command) variables inside my loops and my program hits that one if statement that triggers the goto, will i encounter a memory leak due to my program exiting many loops improperly and not cleaning up the local variables?
gotois not (much) harmful. But then I like to quote the first comment in this answer: stackoverflow.com/questions/1024361/…. "+1: if it's complex enough to consider a goto, it's complex enough to encapsulate in a function and avoid the goto." – R. Martinho Fernandes Aug 11 '09 at 2:50returnas of a structuredgoto. If areturnwould leak, then so would agoto. (And ones you're at it, consider using the structured approach instead of the spaghetti one, put that code into its own function and break out using areturn. The rule of thumb Martinho quotes is great.) – sbi Aug 11 '09 at 8:43