是否有 TreeVisitor 用于按评估顺序访问表达式树?
使用 Java 编译器树 API,可以使用 TreePath 及其子级的叶树/api/javac/tree/com/sun/source/tree/TreeVisitor.html" rel="nofollow">TreeVisitor
。
是否存在按评估顺序访问所有“节点”的 TreeVisitor
实现?例如,如果7 - 8 * 2 + 10
被解析为:
_____+__ / \ - 10 / \ 7 * / \ 8 2
是否有一个TreeVisitor
将访问BinaryTree
为 8 * 2
后跟 7 - (8 * 2)
的 BinaryTree
,然后是 (7 - ( 8 * 2)) + 10 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还有什么地方比
javac
的源代码 (langtools) 更好看呢!在分析和生成编译阶段,多次传递是通过每个编译单元语法树制成的。特别是第一个过程 Gen,生成方法实现的字节码编译。 Gen pass 的大部分显然位于
com.sun.tools.javac.jvm.Gen
,它实现JCTree.Visitor
。Where better to look than the source of
javac
(langtools)!In the Analyze and Generate phase of compilation, multiple passes are made through each compilation unit syntax tree. One pass in particular, Gen, generates the bytecode compilations of method implementations. The bulk of the Gen pass is apparently in
com.sun.tools.javac.jvm.Gen
, which implementsJCTree.Visitor
.