QB64.org Forum
Active Forums => QB64 Discussion => Topic started by: davidshq on June 27, 2020, 01:04:02 pm
-
I have some code (simplified) that looks like this:
SUB dosomething
IF x = 2 THEN
y = 10
GOSUB ending
END IF
x = 4
ending:
END SUB
Is there any reason not to change this to:
SUB dosomething
IF x = 2 THEN
y = 10
EXIT SUB
END IF
x = 4
END SUB
I know in some circumstances GOSUB is used to run some portion of code and then return back to where it was called, but in this case there is no return nor even any other code that could be executed, the sole purpose of the GOSUB/GOTO is to reach END SUB.
Thanks!
-
You wouldn't want a GOSUB there, as eventually you'd run out of stack space. You're going somewhere, but you're never coming back from it, and eventually the PC is going to crap out of stack space listing all those never return addresses and your program is going to crash.
GOTO would work perfectly fine for you, as it doesn't place any return address on the stack, but use of it will make some of the newer programmers wrinkle up their nose, spritz holy water all around, and force them to offer up 100 Hail Mary's to atone for the blasphemy they perceive....
EXIT SUB is simple, to the point, and it's easy to understand its purpose just by reading it, without requiring any scrolling or jumping to a label to see what it's intending to do. I'd suggest just using it and save yourself the headache from having to listen to the overly religious Antigotoers out there. You just can't go wrong with a simple, self-documenting command like EXIT SUB. ;D
-
Thanks McNeill!
-
GOTO would work perfectly fine for you, as it doesn't place any return address on the stack, but use of it will make some of the newer programmers wrinkle up their nose, spritz holy water all around, and force them to offer up 100 Hail Mary's to atone for the blasphemy they perceive....
LOL
Why not
IF x
= 2 THEN y
= 4 ELSE x
= 4 'and be done with it.
no cursing GOTO's or even EXIT SUB's
-
@bplus
LOL
Why not
Code: QB64: [Select]
SUB dosomething
IF x = 2 THEN y = 4 ELSE x = 4 'and be done with it.
END SUB
no cursing GOTO's or even EXIT SUB's
simply because it is a challenge to write code without ELSE keyword!
If I must write a FOR loop from 1 to 10 without FOR keyword I should write
a = 0
Repeat:
a = a +1
StringOne
= StringOne
+ STR$(a
)
GOTO is anywhere!
-
LOL
Why not
IF x
= 2 THEN y
= 4 ELSE x
= 4 'and be done with it.
no cursing GOTO's or even EXIT SUB's
Because: "I have some code (simplified) that looks like this:"
His code is just simplified down to the absolute smallest point to highlight his question/need. It's not his actual program code at all. ;)
-
simply because it is a challenge to write code without ELSE keyword!
Sorry, I thought the challenge was to be Practical! ;-))
BTW goto END like this:
-
GOTO would work perfectly fine for you, as it doesn't place any return address on the stack, but use of it will make some of the newer programmers wrinkle up their nose, spritz holy water all around, and force them to offer up 100 Hail Mary's to atone for the blasphemy they perceive....
Actually, I will now have to crucify my computer, incinerate it, then take the ash and vaporize in a 10 megaton thermonuclear blast! THEN take those atoms and introduce them to anti-atoms and annihilate whats left. THANKS!
In all seriousness, there really is no reason to have GOTOs, GOSUBs or EXITs anymore, all code should be written to run in a seamless line of execution. And it can be done.
-
Actually, I will now have to crucify my computer, incinerate it, then take the ash and vaporize in a 10 megaton thermonuclear blast! THEN take those atoms and introduce them to anti-atoms and annihilate whats left. THANKS!
In all seriousness, there really is no reason to have GOTOs, GOSUBs or EXITs anymore, all code should be written to run in a seamless line of execution. And it can be done.
As usual I disagree on this specially EXIT and the perfectly valid reason being 10 more lines of code or 10 more minutes spent or 10 more people confused by the work around to avoid using these.
What, for instance, is your workaround for the above demo problem for which apparently you aren't allowed to use ELSE either ;-))
BTW
-
I've found that since I've largely excised GOTO, GOSUB & labels (except for locating DATA fields), I've had a much easier time of reacquiring a grasp of what my older coding does. Before that I would open an old project, full of spaghetti logic and find myself wondering what the hell it was I was trying to do. Linear procedural coding is much easier to follow. Plus the IDE makes it much easier to jump to a SUB rather then do a search for a label.
-
Yeah back in the day, you could write really compact code with GOTO and GOSUB but reading it later say to fix a bug or make a mod was nightmare. Back then space was so much more valuable and sometimes less space meant less time to run.
-
Thanks for the feedback all.
I'm working with an existing code base that uses a mixture of labels, gotos, gosubs, exit subs, etc. I'm slowly refactoring it so that it is more modular and easier for me to understand. So for now, I'll be going with EXIT SUB but may refactor more in the future...and may find some instances in which goto/gosub is still the best option...but I have done a decent amount of OOP, so I have the inclination (whether healthy or otherwise) to lean away from goto/gosub/line labels.
-
It doesn't really matter whether you use GOTO or EXIT SUB. I'll use GOTO particularly if there's multiple points I can have an early return at and there's some cleanup code I need to run before exiting:
sub s
If x then goto fail
...
If y then goto fail
...
Fail:
Close #f
End sub
The important thing is that you don't use GOSUB because calling GOSUB without RETURN will exhaust the stack.
-
What, for instance, is your workaround for the above demo problem for which apparently you aren't allowed to use ELSE either ;-))
I am guessing your referencing this,
LOLsimply because it is a challenge to write code without ELSE keyword!
I thought he was simply stating that it was more challenging to not use ELSE.
Now I didn't say one of the Ten Commandments was "Thou Shalt Not Use Goto, Gosub, or Exit"
I just stated that there is really no reason too, back in BASICA and GWBASIC or other early forms you really could not code with out them. But with the QBs and QB64 their are simply better ways to achieve the work.
Though all this is actually mute really cause once QB64 converts to the CPP the output is full of GOTOs!
as for a work around for this:
Here: XD
okay, lets have a FOR to leave early after finding 2 and use the x = 4 line as some kind of error checking,:
y = 10
x = 12
IF x
= 11 THEN x
= 4 'x was never matched
Back to my real work for the day, Cloning "Phantasy Star" from the Sega Master System now.
-
Code: QB64: [Select]
SUB dosomething
FOR x = 0 TO 10
IF x = 2 THEN
y = 10
x = 12
END IF
NEXT x
IF x = 11 THEN x = 4 'x was never matched
END SUB
Back to my real work for the day, Cloning "Phantasy Star" from the Sega Master System now.
That's not quite it, x should come out either 2 if came in 2, changing y to 10, or come out 4 leaving y unchanged, but you proved my point, thankyou! ;-))
Good luck with the real work for the day!
-
That's not quite it, x should come out either 2 if came in 2, changing y to 10, or come out 4 leaving y unchanged, but you proved my point, thankyou! ;-))
Good luck with the real work for the day!
oh you gave no stipulations like that,
there still no GOTO, EXIT, or ELSE.
-
oh you gave no stipulations like that,
there still no GOTO, EXIT, or ELSE.
Nice, I wish I'd thought of that, so simple.
Sure, let's waste more time with this silly thing! ;-))
I didn't think stipulations were needed as implied from original post but I missed part of just deciding only between
EITHER GOTO (not GOSUB at least the way presented)
OR EXIT SUB
EITHER/OR games are usually traps lawyers use! ;-))
-
and more time wasted...
Seems to me OP maybe working with code that is from pre ELSE existence because the situation setup as he presented simply begs for ELSE no matter how complex the code he is boiling it down from, it has a simple ELSE sol'n.
He has practically defined when to use ELSE.
-
and more time wasted...
Well, we are nerdy programmers what else are we to do?! Not like we have a life!
This was fun but I don't think I will be mentioning it in the podcast NEWS segment.
-
LOL It is nerdy, ha!