Forth 语言 EBNF 规则用于无限循环或 if 语句

发布于 2024-11-08 11:29:03 字数 132 浏览 0 评论 0原文

是否有描述 Forth 无限循环或 if 语句的 EBNF 规则?

Is there an EBNF rule that describes a Forth infinite loop or if statement?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寒冷纷飞旳雪 2024-11-15 11:29:03

EBNF 用于描述语法。无限循环或其他循环通常不属于它所描述的范围。因此,您将在 EBNF 中查找不定循环,它看起来类似于:

indefinite_loop ::= 'BEGIN' statements cond 'UNTIL'

通常,cond 会将 0 或 1 压入堆栈以确定是否继续循环(0 表示继续循环,1 表示退出)。因此,如果直接插入 0,循环将永远执行:

: infinite_loop BEGIN do_whatever 0 UNTIL ;

EBNF is used to describe syntax. A loop being infinite or otherwise wouldn't normally fall within what it would describe. As such, you'd be looking at the EBNF for an indefinite loop, which looks something like:

indefinite_loop ::= 'BEGIN' statements cond 'UNTIL'

Normally the cond will be something that pushes a 0 or 1 on the stack to determine whether to continue the loop (0 means continue the loop, 1 means exit). As such, if you just insert a 0 directly, the loop will execute forever:

: infinite_loop BEGIN do_whatever 0 UNTIL ;
忘东忘西忘不掉你 2024-11-15 11:29:03

您还可以使用:

infinite_loop ::= 'BEGIN' statements 'AGAIN'

AGAIN 一词用于执行返回到 BEGIN 的无条件分支。例如:

: main-loop BEGIN listen-for-event process-event AGAIN ;

You can also use:

infinite_loop ::= 'BEGIN' statements 'AGAIN'

The AGAIN word is used to do an unconditional branch back to the BEGIN. For example:

: main-loop BEGIN listen-for-event process-event AGAIN ;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文