您好,欢迎光临本网站![请登录][注册会员]  
文件名称: JFlex User’s Manual
  所属分类: 专业指导
  开发工具:
  文件大小: 612kb
  下载次数: 0
  上传时间: 2011-03-29
  提 供 者: cbl****
 详细说明: JFlex User’s Manual Contents 1 Introduction 3 1.1 Design goals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.2 About this manual . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 2 Installing and Running JFlex 4 2.1 Installing JFlex . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 2.1.1 Windows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 2.1.2 Unix with tar archive . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 2 .1.3 Linux with RPM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 2.2 Running JFlex . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 3 A simple Example: How to work with JFlex 6 3.1 Code to include . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 3.2 Options and Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 3.3 Rules and Actions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 3.4 How to get it going . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 4 Lexical Specifications 12 4.1 User code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 4.2 Options and declarations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 4.2.1 Class options and user class code . . . . . . . . . . . . . . . . . . . . . . 13 4.2.2 Scanning method . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 4.2.3 The end of file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 4.2.4 Standalone scanners . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 4.2.5 CUP compatibility . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 4.2.6 BYacc/J compatibility . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 4.2.7 Code generation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 4.2.8 Character sets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20 4.2.9 Line, character and column counting . . . . . . . . . . . . . . . . . . . . 20 4.2.10 Obsolete JLex options . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 4.2.11 State declarations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 4.2.12 Macro definitions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 4.3 Lexical rules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 4.3.1 Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 4.3.2 Semantics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24 4.3.3 How the input is matched . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.3.4 The generated class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 4.3.5 Scanner methods and fields accessible in actions (API) . . . . . . . . . . 29 5 Encodings, Platforms, and Unicode 31 5.1 The Problem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 5.2 Scanning text files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 5.3 Scanning binaries . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 6 A few words on performance 33 6.1 Comparison of JLex and JFlex . . . . . . . . . . . . . . . . . . . . . . . . . . . 33 6.2 How to write a faster specification . . . . . . . . . . . . . . . . . . . . . . . . . 35 7 Porting Issues 37 7.1 Porting from JLex . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 7.2 Porting from lex/flex . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 7.2.1 Basic structure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 7.2.2 Macros and Regular Expression Syntax . . . . . . . . . . . . . . . . . . 38 7.2.3 Lexical Rules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39 8 Working together 39 8.1 JFlex and CUP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39 8.1.1 CUP version 0.10j and above . . . . . . . . . . . . . . . . . . . . . . . . 39 8.1.2 Custom symbol interface . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 8.1.3 Using existing JFlex/CUP specifications with CUP 0.10j . . . . . . . . . 40 8.1.4 Using older versions of CUP . . . . . . . . . . . . . . . . . . . . . . . . . 41 8.2 JFlex and BYacc/J . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 9 Bugs and Deficiencies 45 9.1 Deficiencies . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45 9.2 Bugs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46 10 Copying and License 46 ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: JFlex Manual
 输入关键字,在本站1000多万海量源码库中尽情搜索: