Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Halcon中有Goto语句吗?我无法在文档中找到它。我需要的是在特定条件下跳回大约 50 行代码。由于这种情况很少发生,我想避免使用循环来执行它。是否有 goto 语句或类似的东西可以让我跳回到同一过程中的前一点?
不,没有 GOTO 语句。
原因可能是:“依赖 goto 语句的代码通常比没有 goto 的代码更难理解和维护。虽然我们对此事并不教条,但似乎应该很少使用 goto 语句,如果有的话。” (Brian Kernighan 和 Dennis Ritchie,C 编程语言)
https://en.wikipedia.org/wiki/Goto