EBNF 冒号和分号的用法?

发布于 2025-01-01 02:00:22 字数 283 浏览 1 评论 0原文

我不知道 BNF 或 EBNF 中的冒号意味着什么。它没有在互联网上的任何地方列出。不管怎样,我的教授决定把它布置在家庭作业中。我认为他把它与分号之类的东西混淆了。我什至不确定分号的含义。以下是一些上下文:

给定以下用于声明的 CFG(上下文无关语法):

D -> D ; D
D -> id : T
T -> char
T -> integer

给出定义标识符类型的属性语法(id 代表标识符)。

有人认为他们可以提供帮助吗?

I have no idea what a colon means in BNF or EBNF. It's not listed anywhere on the internet. Anyway, my professor decided to assign it in the homework. I think he is confusing it with a semicolon or something. I'm still not even sure what the semicolon means. Here is some context:

Given the following CFG (context free grammar) for declarations:

D -> D ; D
D -> id : T
T -> char
T -> integer

Give an attribute grammar that defines type of an identifier (id stands for identifier).

Anyone think they can help?

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

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

发布评论

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

评论(1

行至春深 2025-01-08 02:00:22

;: 只是终端,就像 idcharinteger 一样。所以你的代码可能是这样的:

x : char ; y : integer ; z : char

; and : are simply terminals, just like id, char and integer. So your code could be something like this:

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