【背景】
折腾:
期间,需要写几个全局的,const的String。
【折腾过程】
1.结果是参考自己的:
【已解决】Android(Java)中的const变量定义出错:Syntax error on token "const", delete this token
把:
会报错:
Syntax error on token "const", delete this token |
的
private const String gUserAgent = "";
去改为:
private static final String gUserAgent = "";
就可以了:
【总结】
想要实现常量字符串,使用:
static final String strValue = "your string";
即可。
转载请注明:在路上 » 【已解决】Java中的字符串常量const的String出错:Syntax error on token "const", delete this token