MVEL中有多少关键字或保留字,有人可以列出吗?我没有在MVEL的官方文档中找到,非常感谢您提供的任何帮助。
答案 0 :(得分:4)
根据您使用的版本,可能会有新的添加和删除
但根据to this doc,这是用于检查指定字符串是否是解析器中的保留字的函数。
public static boolean isReservedWord(String name) {
return LITERALS.containsKey(name) || OPERATORS.containsKey(name);
}
其中
文字地图包含
true,Array,Boolean,boolean,char,Character,Class,ClassLoader,Compiler,Double,double,empty,false,Float,float,int,Integer,Long,long,Math,nil,null,Object,Runtime,SecurityManager,Short,short,StrictMath,String,StringBuffer,StringBuilder,System,Thread,ThreadLocal,Void
运营商列表
if,-,--,!=,#,%,&,&&,*,**,/,:,;,?,^,|,||,~=,+,++,+=,<,<<,<<<,<=,=,-=,==,>,>=,>>,>>>,and,assert,contains,convertable_to,def,do,else,for,foreach,function,import,import_static,in,instanceof,is,new,or,return,soundslike,strsim,switch,var,while,with