How do you name your GoTo labels? I use rarely often so I'm having a hard time finding good names.
Please refrain from the classical 'goto is evil and eat your code alive discussion'
|
|
How do you name your GoTo labels? I use rarely often so I'm having a hard time finding good names. Please refrain from the classical 'goto is evil and eat your code alive discussion'
|
||||
|
|
|
My label names almost always fall into one of these patterns:
|
||
|
|
|
|
|
||
|
|
|
|
In batch files I often use HELL. Like:
|
||
|
|
|
|
In fortran, I use goto for rollbacks, and I normally start from 999 backwards (in fortran, goto labels are only numeric)
I also use labels greater than 1000 if for some reason I want to skip the rollback part. In C and other languages, I would use rollbacknumber (eg. rollback1, rollback2), so it's clear from the label that you are going to rollback. This is basically the only good reason for using goto. |
||
|
|
|
|
I usually only need it for 2 cases. As such, my goto labels are either begin or finally. |
||
|
|