104
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 19 May 2024
104 points (97.3% liked)
Programming
17314 readers
244 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 1 year ago
MODERATORS
goto
does have some uses, such as single exit point, but should be used sparingly.Single exit point is an assembly rule that was mindlessly ported to C/C++. It doesn't make sense in a structured language.
Maybe for your use-cases, for mine i find it quite useful.
I'll be very interested to hear more, do you have a blog?
A common case is a function that uses resources like opening files, sockets, whatever. If there's an error you want to ensure a clean exit, so at different parts of said function you
goto
the end where you check if said resources are being used and release them before exiting.Cleaner than constantly checking at every error.