没有合适的资源?快使用搜索试试~ 我知道了~
首页javaparser教程
javaparser教程
需积分: 50 8.0k 浏览量
更新于2023-05-25
评论 1
收藏 1.75MB PDF 举报
javaparser教程,3.16版本。从官网上下载的。去官网上下载会比较卡,在此下载分享出来。
资源详情
资源评论
资源推荐


JavaParser: Visited
Analyse, transform and generate your Java code base
Nicholas Smith, Danny van Bruggen and Federico Tomassetti
This book is for sale at http://leanpub.com/javaparservisited
This version was published on 2019-05-17
This is a Leanpub book. Leanpub empowers authors and publishers with the Lean Publishing
process. Lean Publishing is the act of publishing an in-progress ebook using lightweight tools and
many iterations to get reader feedback, pivot until you have the right book and build traction once
you do.
© 2016 - 2019 Nicholas Smith, Danny van Bruggen and Federico Tomassetti

Tweet This Book!
Please help Nicholas Smith, Danny van Bruggen and Federico Tomassetti by spreading the word
about this book on Twitter!
The suggested hashtag for this book is #JavaParser.
Find out what other people are saying about the book by clicking on this link to search for this
hashtag on Twitter:
#JavaParser

Contents
Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
What is JavaParser? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
JavaParser is not . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Who is this book for? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
This book is not for . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
How to use this book? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Conventions used in this book . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Code Samples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
How to Contact Us . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
The Authors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
A Brief Introduction to Abstract Syntax Trees . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Everything is a node . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
When is a node, not a node? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
Growing our first tree . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
Beyond Abstract . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
A Flying Visit . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
Travelling Companions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
A Simple Visitor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
A Simple Visitor With State . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
A Simple Modifying Visitor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
A Simple Comment Reporter . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
Comments - Here Be Dragons . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
Comment Attribution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
Comments In Practice . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
Pretty Printing and Lexical Preservation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
What is Pretty-Printing? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
What is Lexical-Preserving Printing? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
Choosing between Pretty Printing and Lexical-Preserving Printing . . . . . . . . . . . . . . 31
Using Pretty Printing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
Using Lexical-Preserving Printing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34

CONTENTS
How it works: the NodeText and the Concrete Syntax Model . . . . . . . . . . . . . . . . . . 37
Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
Solving Symbols and References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
How to setup the JavaSymbolSolver? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42
How to get the type of references: a first example . . . . . . . . . . . . . . . . . . . . . . . . . 43
Specifying where to look for types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
Resolving a type using an absolute name . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
Resolving a Type in a context . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
Resolving method calls . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
Using the CombinedTypeSolver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
Using the MemoryTypeSolver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
Appendix A - ReversePolishNotation.java . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
Appendix B - Visitable Nodes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
剩余63页未读,继续阅读


















安全验证
文档复制为VIP权益,开通VIP直接复制

评论0