ANTLR 可以生成最终的解析器类吗?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用什么版本的 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.
来自这个线程(哎呀-我的错),看起来还不可能做到这一点。 :(
From this thread (oops- my bad), it looks like it's not possible to do it yet. :(