3
votes
10answers
176 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 ans …
1
vote
4answers
104 views
How can I use goto in a switch statement in Objective-C?
In my code I need to be able to jump (goto) a different case within the same switch statement. Is there a way to do this?
My code is something like this: (There is a lot of code …
5
votes
7answers
250 views
Is this a clear use of goto?
Hi All,
Just wondering if this is considered a clear use of goto in C#:
IDatabase database = null;
LoadDatabase:
try
{
database = databaseLoader.LoadDatabase();
}
catch(Databas …
3
votes
2answers
163 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 (Gorou …
0
votes
6answers
123 views
The intricacy of a string tokenization function in C
For brushing up my C, I'm writing some useful library code. When it came to reading text files, it's always useful to have a convenient tokenization function that does most of the …
-2
votes
1answer
75 views
Do you use ‘goto’ in your code? [closed]
Possible Duplicates:
‘goto’ usage
GOTO still considered harmful?
hi
Do you use 'goto' in your code? If you do, in what cases?
3
votes
7answers
146 views
The anti-goto, pro-one-return convention [closed]
Possible Duplicate:
Should a function have only one return statement ?
Hi,
As far as I know, today the attitude is avoiding completely from goto of any kind (break, conti …
3
votes
5answers
195 views
What’s the best(when performance matters) way to implement a state machine in C#?
I came up with the following options:
Using the goto statement:
Start:
goto Data
Data:
goto Finish
Finish:
;
using the switch statement:
switch(m_state) {
case St …
24
votes
40answers
3k 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 …
0
votes
1answer
128 views
How do I load and external swf AND gotoAndPlay() with ONE button
I've made an interactive tour. Which can be seen here:
http://www.92YTribeca.org/Tour
The main swf is the nav at the top. And I load 4 external swfs into the main (About, Rentals …
0
votes
6answers
280 views
Windows batch file - The system cannot find the batch label specified
The Problem
I'm having a problem with a DOS batch file and labels.
I keep getting this error:
The system cannot find the batch label
specified
What I've tried
Two comput …
6
votes
10answers
318 views
is erlangs recursive functions not just a goto?
Hi,
Just to get it straight in my head. Consider this example bit of Erlang code:
test() ->
receive
{From, whatever} ->
%% do something
…
0
votes
7answers
401 views
Translate goto statements to if, switch, while, break, etc.
Is there a way to mechanically translate goto statements to if, switch, while, break, and continue statements, etc, or with function calls, objects, anything?
0
votes
6answers
6k 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)
…
1
vote
5answers
489 views
only do if day… batch file
hello i got a batch file, something like this:
if %day%==monday, tuesday, wednesday, thursday, friday (
goto yes
) else (
goto no
)
Now i know the first line won't work.
What i …
