- 论坛徽章:
- 0
|
本帖最后由 oldbeginner 于 2014-03-02 21:56 编辑
*********************************
步入 The definitive ANTLR4 reference (English PDF)
*********************************
先看一个新闻,当然不谈大事。
记者采访社科院的一位同学,
记者,“这位同学,曾经伤害过中国科学院尊严的是谁?”
这位同学,“FREEBSD 和 MIPS 都曾经伤害过 中国 科学院 尊严!”
然后,全国政协委员:韩剧热潮伤害了我们的文化尊严(http://news.sina.com.cn/c/2014-03-02/154529602693.shtml)
********************************
看这本书,是无奈之举,实在找不到讲ANTLR4 的中文资料。浏览了几十页,不由得想起另外一句话,水平只比你高一级的人写出来的教程一般是适合的。
前三章应该是废话,虽然也没仔细看,但能看出来没啥意思。
直接从第四章开始,目录如下
4. A Quick Tour . . . . . . . . . . . . 31
4.1 Matching an Arithmetic Expression Language 32
4.2 Building a Calculator Using a Visitor 38
4.3 Building a Translator with a Listener 42
4.4 Making Things Happen During the Parse 46
4.5 Cool Lexical Features 50
*******************************
4.1 作者要做一个计算器,很搞笑,作者说要简单一些,
To keep things simple,
但实际上
we’ll allow only the basic arithmetic operators (add, subtract,
multiply, and divide), parenthesized expressions, integer numbers, and variables.
+ - * / () 整数 变量,对刚入门的来说不简单
语法文件可以从网站antlr3.org上下载
tpantlr2-code.zip
(159.95 KB, 下载次数: 4)
作者然后开始解释语法,我觉得不如先执行完,最后再解释,效果可能好些。
要解释如下内容,
执行效果,如下
*****************************************
再回到语法 g4 文件上,
• Grammars consist of a set of rules that describe language syntax. There
are rules for syntactic structure like stat and expr as well as rules for
vocabulary symbols (tokens) such as identifiers and integers.
• Rules starting with a lowercase letter comprise the parser rules.
这句我懂,小写字母开头的规则 表示 语法 规则。
•Rules starting with an uppercase letter comprise the lexical (token) rules.
这句我也懂,大写字母开头的规则 表示 词法 规则。
• We separate the alternatives of a rule with the | operator, and we can
group symbols with parentheses into subrules. For example, subrule ('*'|'/')
matches either a multiplication symbol or a division symbol.
这句比较复杂,应该分成 3 句,如下:
We separate the alternatives of a rule with the | operator.
利用 | 符号 表示 规则的其它候选。
We can group symbols with parentheses into subrules.
利用 () 表示 子规则。
说实话,这时用PPT 效果会比较好。 |
|