Click here to Skip to main content
15,891,513 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: I just used a goto! Pin
OriginalGriff20-Jun-19 1:00
mveOriginalGriff20-Jun-19 1:00 
GeneralRe: I just used a goto! Pin
Super Lloyd20-Jun-19 1:10
Super Lloyd20-Jun-19 1:10 
GeneralRe: I just used a goto! Pin
OriginalGriff20-Jun-19 1:19
mveOriginalGriff20-Jun-19 1:19 
GeneralRe: I just used a goto! Pin
swampwiz20-Jun-19 3:01
swampwiz20-Jun-19 3:01 
GeneralRe: I just used a goto! Pin
lopatir20-Jun-19 3:47
lopatir20-Jun-19 3:47 
GeneralRe: I just used a goto! Pin
Mike Winiberg20-Jun-19 20:29
professionalMike Winiberg20-Jun-19 20:29 
GeneralRe: I just used a goto! Pin
RJOberg20-Jun-19 3:31
professionalRJOberg20-Jun-19 3:31 
GeneralRe: I just used a goto! Pin
Kirk 1038982121-Jun-19 6:47
Kirk 1038982121-Jun-19 6:47 
I had a complicated set of "Insurance Premium Calculations" that was all GOTO based because of short-cut logic (If the person was < 25, skip this discount, etc)

Ultimately, I used a
while (1=1) {
// setup initial values

// instead of a goto, just a break;

// insert 30 different logic checks, each with a break, after setting/adjusting rating parameters.
break;
}

In the end, what's the difference? If there was only 1 label every goto could go to... And there was, then it is pretty much the same. (I was always hopeful nobody put a continue inside that loop!)

GeneralRe: I just used a goto! Pin
GKP199220-Jun-19 1:01
professionalGKP199220-Jun-19 1:01 
GeneralRe: I just used a goto! Pin
Super Lloyd20-Jun-19 1:08
Super Lloyd20-Jun-19 1:08 
GeneralRe: I just used a goto! Pin
Kevin McFarlane20-Jun-19 1:26
Kevin McFarlane20-Jun-19 1:26 
GeneralRe: I just used a goto! PinPopular
DRHuff20-Jun-19 1:19
DRHuff20-Jun-19 1:19 
GeneralRe: I just used a goto! Pin
Super Lloyd20-Jun-19 1:39
Super Lloyd20-Jun-19 1:39 
GeneralRe: I just used a goto! Pin
raddevus20-Jun-19 2:00
mvaraddevus20-Jun-19 2:00 
GeneralRe: I just used a goto! Pin
swampwiz20-Jun-19 3:05
swampwiz20-Jun-19 3:05 
GeneralRe: I just used a goto! Pin
Rick York20-Jun-19 4:40
mveRick York20-Jun-19 4:40 
GeneralRe: I just used a goto! Pin
raddevus20-Jun-19 5:31
mvaraddevus20-Jun-19 5:31 
GeneralRe: I just used a goto! Pin
Nelek20-Jun-19 4:59
protectorNelek20-Jun-19 4:59 
GeneralRe: I just used a goto! Pin
David O'Neil20-Jun-19 7:34
professionalDavid O'Neil20-Jun-19 7:34 
GeneralRe: I just used a goto! Pin
PeejayAdams20-Jun-19 1:25
PeejayAdams20-Jun-19 1:25 
GeneralRe: I just used a goto! Pin
Sander Rossel20-Jun-19 1:34
professionalSander Rossel20-Jun-19 1:34 
GeneralRe: I just used a goto! Pin
PeejayAdams20-Jun-19 2:35
PeejayAdams20-Jun-19 2:35 
GeneralRe: I just used a goto! Pin
Fueled By Decaff20-Jun-19 21:13
Fueled By Decaff20-Jun-19 21:13 
GeneralRe: I just used a goto! Pin
theoldfool20-Jun-19 1:33
professionaltheoldfool20-Jun-19 1:33 
GeneralRe: I just used a goto! Pin
musefan20-Jun-19 1:51
musefan20-Jun-19 1:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.