“yy”是什么意思?在 lex.yy.c 中代表什么?

发布于 2024-08-02 11:37:21 字数 27 浏览 3 评论 0原文

lex.yy.c 中的“yy”代表什么?

What does the "yy" in lex.yy.c stand for?

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

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

发布评论

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

评论(4

清音悠歌 2024-08-09 11:37:21

Lex was meant to be used in concert with Yacc. The history and details of this are detailed in Steven Johnson's paper Yacc: Yet Another Compiler Compiler. The Yacc parser uses only names beginning in "yy' - there's no apparent meaning discussed beyond simply desiring a namespace. The "yy" in lex.yy.c indicates that the lex output is intended for a yacc parser.

﹂绝世的画 2024-08-09 11:37:21

我相信“yy”用于指示这是一个生成的代码文件。

通常,lex 实用程序将其生成的程序写入文件 lex.yy.c
- 参考

I believe the "yy" is used to indicate that this is a generated code file.

Usually, the lex utility writes the program it generates to the file lex.yy.c
- Reference

独木成林 2024-08-09 11:37:21

可能来自 YACC(Yet Another Compiler Compiler),它与 Lex 一起使用来实现相当多的编译器和类似的程序。 Gnu 的等价物是 Bison 和 Flex,而且现在看起来更加普遍,因此它们之间的联系可能并不明显。

Probably from YACC (Yet Another Compiler Compiler), which was used with Lex to implement quite a few compilers and similar programs. The Gnu equivalents are Bison and Flex, and look a lot more widespread now, so the connection may not be obvious.

半边脸i 2024-08-09 11:37:21

我认为它来自 Yacc,一种较旧的解析器生成器。

I think it comes from Yacc, one of the older parser generators.

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