这是我一直在使用的代码,我从here复制了(从第13页开始;我可以成功地执行并解析一个包含数字和+符号的input.txt文件的附加示例)即4 + 2 returns six
,但4 ++ 2 gives an error
)
options {
STATIC = false ;
}
PARSER_BEGIN ( Calculator )
import java.io.PrintStream ;
class Calculator
{
public static void main ( String [] args)
throws ParseException, TokenMgrError, NumberFormatException
{
Calculator parser = new Calculator( System.in ) ;
parser.Start(System.out) ;
}
double previousValue = 0.0 ;
}
PARSER_END ( Calculator )
SKIP : { " " }
TOKEN : { < EOL : "\n" | "\r" | "\r\n" > }
TOKEN : { < PLUS : "+" > }
TOKEN : { < NUMBER : <DIGITS> | <DIGITS> "." <DIGITS> | <DIGITS> "." | "." <DIGITS> > }
TOKEN : { <#DIGITS : (["0"-"9"])+ > }
void Start(PrintStream printStream) throws NumberFormatException :
{}
{
(
previousValue = Expression()
<EOL>
{printStream.println(previousValue) ; }
)*
<EOF>
}
double Expression () throws NumberFormatException :
{
double i ;
double value ;
}
{
value = Primary ()
(
<PLUS>
i = Primary()
{ value += i ; }
)*
{ return value ; }
}
double Primary () throws NumberFormatException :
{
Token t ;
}
{
t = <NUMBER>
{ return Double.parseDouble( t.image ) ; }
}
C:\Users\Jay\workspace\javaCC>javacc calculator0.jj
正确生成所有必需的java文件,我编译的所有文件都没有错误,也没有用
警告javac *.java
但是,当我尝试运行时
java Calculator < input.txt
其中input.txt包含
4 + 2 + 2
由于某些原因,我得到了这个新版本
Exception in thread "main" ParseException: Encountered "<EOF>" at line 1, column 11.
Was expecting one of:
<EOL> ...
"+" ...
at Calculator.generateParseException(Calculator.java:218)
at Calculator.jj_consume_token(Calculator.java:156)
at Calculator.Start(Calculator.java:27)
at Calculator.main(Calculator.java:10)
我该如何解决这个问题?
答案 0 :(得分:1)
我找到了解决方案。这是PDF上的一个小错误,我能够解决它。只需添加三个字符即可修复该错误。
答案是改变:
void Start(PrintStream printStream) throws NumberFormatException :
{}
{
(
previousValue = Expression()
<EOL>
{printStream.println(previousValue) ; }
)*
<EOF>
}
的
void Start(PrintStream printStream) throws NumberFormatException :
{}
{
(
previousValue = Expression()
(<EOL>)*
{printStream.println(previousValue) ; }
)*
<EOF>
}
它就像一个魅力。