Javacc:期待字符串文字之一
Javacc: was expecting one of string literal
我对 javacc 有点陌生。有人可以解释一下为什么我一直收到这个错误。是不是语法写法不对?
I keep getting this error despite writing the right grammar.
以下是我的代码:
options {
Static = false ;
}
PARSER_BEGIN(Adder)
class Adder {
static void main(String[] args) throws ParseException, TokeMgrError {
Adder parser = new Adder(System.in);
parser.Start;
}
}
PARSER_END(Adder)
SKIP :{
” ”
| ”\n”
| ”\r”
| ”\r\n”}
TOKEN :{<PLUS : ”+”>}
TOKEN :{<NUMBER : ([”0”-”9”])+>}
void Start() :
{}
{
<NUMBER>
(
<PLUS>
<NUMBER>
)*
<EOF>6
这是我得到的错误:
C:\Users\musta>java -cp C:\javacc-6.0\bin\lib\javacc.jar javacc adder.jj
Java Compiler Compiler Version 6.0_1 (Parser Generator)
(type "javacc" with no arguments for help)
Reading from file adder.jj . . .
org.javacc.parser.ParseException: Encountered " <IDENTIFIER> "\u00e2\u20ac "" at line 14, column 9.
Was expecting one of:
<STRING_LITERAL> ...
"<" ...
Detected 1 errors and 0 warnings.
字符串文字只能以普通 ASCII 引号 ("
) 开头,不能以 "pretty" unicode 引号 (”
) 开头。因此它不会识别您的字符串文字,而是将它们识别为标识符。由于这些地方不允许使用标识符,因此您会收到此错误消息。
所以用纯 ASCII 引号替换你的引号,错误就会消失。
我对 javacc 有点陌生。有人可以解释一下为什么我一直收到这个错误。是不是语法写法不对?
I keep getting this error despite writing the right grammar.
以下是我的代码:
options {
Static = false ;
}
PARSER_BEGIN(Adder)
class Adder {
static void main(String[] args) throws ParseException, TokeMgrError {
Adder parser = new Adder(System.in);
parser.Start;
}
}
PARSER_END(Adder)
SKIP :{
” ”
| ”\n”
| ”\r”
| ”\r\n”}
TOKEN :{<PLUS : ”+”>}
TOKEN :{<NUMBER : ([”0”-”9”])+>}
void Start() :
{}
{
<NUMBER>
(
<PLUS>
<NUMBER>
)*
<EOF>6
这是我得到的错误:
C:\Users\musta>java -cp C:\javacc-6.0\bin\lib\javacc.jar javacc adder.jj
Java Compiler Compiler Version 6.0_1 (Parser Generator)
(type "javacc" with no arguments for help)
Reading from file adder.jj . . .
org.javacc.parser.ParseException: Encountered " <IDENTIFIER> "\u00e2\u20ac "" at line 14, column 9.
Was expecting one of:
<STRING_LITERAL> ...
"<" ...
Detected 1 errors and 0 warnings.
字符串文字只能以普通 ASCII 引号 ("
) 开头,不能以 "pretty" unicode 引号 (”
) 开头。因此它不会识别您的字符串文字,而是将它们识别为标识符。由于这些地方不允许使用标识符,因此您会收到此错误消息。
所以用纯 ASCII 引号替换你的引号,错误就会消失。