ANTLR 可以生成最终的解析器类吗?

发布于 2024-07-16 12:06:20 字数 177 浏览 12 评论 0原文

我正在使用 ANTLR 3.1 和 ANTLRWorks 在 Java 中生成解析器类。 如果我使用 Java Final 关键字标记生成的类,解析器的性能会更好。 问题是:每次从 ANTLR 语法重新生成代码后,我都会手动添加此关键字。 无论如何,在语法中,是否有告诉 ANTLR 将 Final 关键字添加到生成的解析器类定义中?

I'm using ANTLR 3.1 and ANTLRWorks to generate a parser class in Java. The parser performs better if I mark the generated class with the Java final keyword. The problem is: I am adding this keyword manually after each time I re-generated the code from the ANTLR grammar. Is there anyway, in the grammar, of telling ANTLR to add the final keyword to the generated parser class definition?

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

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

发布评论

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

评论(2

过期情话 2024-07-23 12:06:20

您使用什么版本的 Java? 更新的版本应该自动检测叶类,就像 1.3 以来的服务器模式一样。

What version of Java are you using? The more recent ones should detect leaf classes automatically, as should any since 1.3 in -server mode.

呆橘 2024-07-23 12:06:20

来自这个线程(哎呀-我的错),看起来还不可能做到这一点。 :(

From this thread (oops- my bad), it looks like it's not possible to do it yet. :(

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