|
|
|
|
|
by techno_modus
2762 days ago
|
|
Jumps to arbitrary instruction addresses (goto) are unavoidable and the dispute is about how to structure such jumps by effectively replacing goto by some other mechanism: - Introduce scopes and program structure instead of explicit labels (instruction addresses) and using control flow operators which rely on this structure - Procedures and procedure calls - Overriding and virtual functions where the system knows how to find the next instruction to jump to - Concurrency and multi-threading where resume operation means essentially jumping to some (dynamic, not static) instruction address. - Asynchronous and even-driven programming |
|
Gotos are not unavoidable in high level languages.