Chinaunix首页 | 论坛 | 博客
  • 博客访问: 209985
  • 博文数量: 49
  • 博客积分: 2297
  • 博客等级: 中校
  • 技术积分: 566
  • 用 户 组: 普通用户
  • 注册时间: 2006-07-19 22:17
文章分类
文章存档

2011年(3)

2010年(46)

分类:

2010-03-16 22:13:41

Bison is a general-purpose parser generator that converts an annotated context-free grammar into an LALR(1) or GLR parser for that grammar. Once you are proficient with Bison, you can use it to develop a wide range of language parsers, from those used in simple desk calculators to complex programming languages.

Bison is upward compatible with Yacc: all properly-written Yacc grammars ought to work with Bison with no change. Anyone familiar with Yacc should be able to use Bison with little trouble. You need to be fluent in C or C++ programming in order to use Bison.

阅读(1162) | 评论(2) | 转发(0) |
给主人留下些什么吧!~~

kdhoe2010-03-18 23:59:56

flb_20012010-03-18 16:23:12