MVEL中有多少关键字或保留字,谁能列出来?我没有在 MVEL 的官方文档中找到,非常感谢您提供的任何帮助。
问问题
488 次
1 回答
5
根据您使用的版本可能会有新的增删
但是根据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
于 2014-07-02T18:15:40.377 回答