Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

78
votes
44answers
8k views

GOTO still considered harmful?

Everyone is aware of Dijkstra's Letters to the editor: go to statement considered harmful (also here .html transcript and here .pdf) and there has been a formidable push since that time to eschew the ...
52
votes
10answers
971 views

Being pressured to GOTO the dark-side

We have a situation at work where developers working on a legacy (core) system are being pressured into using GOTO statements when adding new features into existing code that is already infected with ...
26
votes
1answer
703 views

Will using `goto` leak variables?

Is it true that goto jumps across bits of code without calling destructors and things? e.g. void f() { int x = 0; goto lol; } int main() { f(); lol: return 0; } Won't x be leaked?
26
votes
16answers
4k views

Examples of good gotos in C or C++

In this thread, we look at examples of good uses of goto in C or C++. It's inspired by an answer which people voted up because they thought I was joking. Summary (label changed from original to make ...
24
votes
14answers
2k views

Design pattern that can replace chained switch/goto?

I have a code for updating my application resources to current application version. This code is called after application update. int version = 1002; // current app version switch(version) { ...
22
votes
21answers
2k views

Is there ever a reason to use goto in modern .NET code?

I just found this code in reflector in the .NET base libraries... if (this._PasswordStrengthRegularExpression != null) { this._PasswordStrengthRegularExpression = ...
21
votes
9answers
747 views

Get out of multiple loops? [closed]

Possible Duplicate: Breaking out of a nested loop I have this code foreach (___) { foreach (___) { foreach (___) { if (condition) { ...
21
votes
9answers
588 views

Other ways to deal with “loop initialization” in C#

To start with I'll say that I agree that goto statements are largely made irrelevant by higher level constructs in modern programming languages and shouldn't be used when a suitable substitute is ...
21
votes
11answers
2k views

Valid use of goto for error management in C?

This question is actually a result of an interesting discussion at programming.reddit.com a while ago. It basically boils down to the following code: int foo(int bar) { int return_value = 0; ...
18
votes
10answers
6k views

Is there a goto statement in java?

I'm confused about this. Most of us have been told that there is no goto statement in Java. But I found that it is one of the keyword in Java. Where can it be used? If it can not be used, then why was ...
16
votes
18answers
2k views

Continue Considered Harmful?

Should developers avoid using continue in C# or its equivalent in other languages to force the next iteration of a loop? Would arguments for or against overlap with arguments about Goto?
15
votes
5answers
302 views

Goto prior to a variable definition - what happens with its value?

Here is some question I wondered about. Given the following code, can we be certain about its output? void f() { int i = 0; z: if(i == 1) goto x; else goto u; int a; x: if(a == 10) goto y; ...
15
votes
4answers
2k views

How to Break out of multiple loops at once in C#?

What if I have nested loops, and I want to break out of all of them at once? while (true) { // ... while (shouldCont) { // ... while (shouldGo) { // ... ...
15
votes
8answers
1k views

Why does this “finally” execute?

If you run the code below it actually executes the finally after every call to the goto: int i = 0; Found: i++; try { throw new Exception(); } catch (Exception) ...
15
votes
7answers
942 views

Is there a Java bytecode optimizer that removes useless gotos?

Problem: I have a method that compiles to over 8000 bytes of Java bytecode. HotSpot has a magic limit that makes the JIT not kick in for methods that exceed 8000 bytes. (Yes, it is reasonable to have ...
14
votes
3answers
364 views

`goto` in Python

I must use goto in Python. I read this but my Python implementation (CPython 2.7.1 on Mac) does not have this module, so it doesn't seem to be portable. It should at least work in all Python ...
14
votes
11answers
724 views

Do Perl loop labels count as a GOTO?

Generally, it is good practice to avoid GOTOs. Keeping that in mind I've been having a debate with a coworker over this topic. Consider the following code: Line: while( <> ) { next ...
14
votes
7answers
529 views

c99 goto past initialization

While debugging a crash, I came across this issue in some code: int func() { char *p1 = malloc(...); if (p1 == NULL) goto err_exit; char *p2 = malloc(...); if (p2 == NULL) ...
13
votes
9answers
23k views

alternative to goto statement in Java

What is an alternative function for goto keyword in java? Since Java does not have goto.
12
votes
9answers
957 views

To use goto or not?

This question may sound cliched but I am in a situation here. I am trying to implement a finite state automaton to parse a certain string in C. As I started writing the code, I realised the code may ...
12
votes
8answers
2k views

Is using goto a legitimate way to break out of two loops?

I am solving problem 9 on the Project Euler. In my solution I use a "goto" statement to break out of two for loops. The Problem is the following: A Pythagorean triplet is a set of three natural ...
11
votes
13answers
1k views

Go To Statement Considered Harmful?

If the statement above is correct, then why when I use reflector on .Net BCL I see it is used a lot? EDIT: let me rephrase: are all the GO-TO's I see in reflector written by humans or compilers?
11
votes
4answers
306 views

In Perl, what is the right way for a subclass to alias a method in the base class?

I simply hate how CGI::Application's accessor for the CGI object is called query. I would like my instance classes to be able to use an accessor named cgi to get the CGI object associated with the ...
11
votes
12answers
2k views

while(1) .. break instead of goto

I found the following code in a C program: while (1) { do_something(); if (was_an_error()) break; do_something_else(); if (was_an_error()) break; [...] break; } ...
10
votes
14answers
3k views

PHP and the goto statement to be added in PHP 5.3

The "goto" statement comes straight out of ASM or any other assembler language. Here's a link: http://be2.php.net/manual/en/control-structures.goto.php I'm wondering: what can this do to make my ...
9
votes
8answers
272 views

Variable declaration after goto Label - C

Today I found one interesting thing. I didn't know that one can't declare a variable after a goto label. Compiling the following code #include <stdio.h> int main() { int x = 5; goto ...
9
votes
14answers
795 views

C++ , is this goto statement warranted?

I have changed title slightly because I thought this is more appropriate question. Would you refactor it (seems like legitimate use of goto) ? If, how would you refactor the following code to remove ...
9
votes
2answers
341 views

What happens when we combine RAII and GOTO?

I'm wondering, for no other purpose than pure curiosity (because no one SHOULD EVER write code like this!) about how the behavior of RAII meshes with the use of goto (lovely idea isn't it). class Two ...
8
votes
4answers
237 views

Address of labels (MSVC)

We are writing a byte-code for a high-level compiled language, and after a bit of profiling and optimization, it became clear that the current largest performance overhead is the switch statement ...
8
votes
7answers
671 views

How bad is this goto?

I created a tetris game where you can restart after a game over. I implemented this quick and dirty with a goto (see code). The Game class relies on destructors, are these called with these goto's? ...
8
votes
8answers
486 views

GOTO considered harmless

The goto statement has been examined at great length in several SO discussions (see this and that), and I certainly don't want to revive those heated debates. Instead, I'd like to concentrate on a ...
8
votes
10answers
796 views

Is this goto expressive?

The following code was a proof of concept for a message batching routine. Do I avoid goto like the plague and rewrite this code? Or do you think the goto is an expressive way to get this done? If ...
8
votes
9answers
2k views

C Programming: address of a label

I know everyone hates gotos. In my code, for reasons I have considered and am comfortable with, they provide an effective solution (ie I'm not looking for "don't do that" as an answer, I understand ...
8
votes
10answers
561 views

is erlangs recursive functions not just a goto?

Just to get it straight in my head. Consider this example bit of Erlang code: test() -> receive {From, whatever} -> %% do something test(); ...
8
votes
10answers
3k views

C/C++ goto

I want to declare an array of "jumplabels". Then I want to jump to a "jumplabel" in this array. But I have not any idea how to do this. It should look like the following code: function() { ...
8
votes
32answers
4k views

To Use GOTO or Not?

Currently I am working on a project where goto statements are heavely used. The main purpose of goto statements is to have one cleanup section in routine rather than multiple return statements. Like ...
7
votes
3answers
131 views

will goto violate mutexes?

I am doing it wrong, yes? ... if( you_think_youre_genius ) goto goto_sucks: ... pthread_mutex_lock(&mutex); do_stuff(); goto_sucks: do_other_stuff(); ...
7
votes
5answers
337 views

What are the valid use cases of goto in PHP?

I know, there are other questions about the goto statement introduced in PHP 5.3. But I couldn't find any decent answer in there, all were of the type "last resort", "xkcd", "evil", "bad", "EVIL!!!". ...
7
votes
12answers
525 views

Difference between GOTO and THROW?

Many people accused me recently for just mentioning a single word - "goto". It makes me wonder, why it is considered such a nasty word. I am aware of several previous discussions on the topic, but it ...
7
votes
5answers
143 views

Should using Eval carry the same stigma as GoTo?

It is taught in every computer science class and written in many books that programmers should not use GoTo. There is even an xkcd comic about it. My question is have we reached a point where the same ...
7
votes
7answers
383 views

Is this a clear use of goto?

Just wondering if this is considered a clear use of goto in C#: IDatabase database = null; LoadDatabase: try { database = databaseLoader.LoadDatabase(); } catch(DatabaseLoaderException e) { var ...
7
votes
6answers
60k views

VB.NET Switch Statement GoTo Case

I am writing some code in VB.NET that uses a switch statement but in one of the cases it needs to jump to another block. In C# it would look like this: switch (parameter) { case ...
6
votes
5answers
352 views

How to (computed) goto and longjmp in C++?

I don't usually code C++, but a strange comp sci friend of mine got sick of looking at my wonderful FORTRAN programs and challenged me to rewrite one of them in C++, since he likes my C++ codes ...
6
votes
7answers
387 views

C/C++: goto into the for loop

I have a bit unusual situation - I want to use goto statement to jump into the loop, not to jump out from it. There are strong reasons to do so - this code must be part of some function which makes ...
6
votes
11answers
678 views

C: Nested Ifs or Gotos

What is the best way to manage resources for a C program. Should I use a nested if structure or should I use goto statements? I am aware there is a lot of taboo about goto statements. However, I ...
6
votes
8answers
778 views

When implementing an infinite loop, is there a difference in using while(1) vs for(;;) vs goto (in C)?

When implementing an infinite loop, is there a difference in using while(1) vs for(;;) vs goto? Thanks, Chenz
6
votes
4answers
2k views

How do I get GDB to break out of a loop?

I can tell GDB to return from a function immediately with return, and call a function with call myFunction. But how do I get it break out of the current loop? i.e. to act as if it's hit a break; ...
6
votes
2answers
774 views

Differences between Coroutines and GoTo?

I always read about the horrible thing that "goto" is. But, todaym reading about the google programming language "Go" http://golang.org/ and i see that it suports Coroutines (Goroutines). The ...
5
votes
2answers
59 views

Why is it OK to jump into the scope of an object of scalar type w/o an initializer?

When I'm reading the C++ standard, it seems that the following code is perfectly fine according to the standard. int main() { goto lol; { int x; lol: cout << x << endl; ...
5
votes
4answers
79 views

Algorithm for rewriting modified goto semantics

I've got an large bunch of legacy code in an old self-conceived scripting language that we compile/translate into javascript. That language has a conditional jump, jumping to a label. Difference to ...

1 2 3 4