简单的说是:mvel中int和一个double做乘法,是可能出问题的
public static void mainString[] args) throws Exception {
System.err.println1350*0.7*0.97+0.5*0.06));
String exp3=”a*b*c+d*e)”;
Map map=new HashMap<>);
map.put”a”, 1350d);
map.put”b”, 0.7);
map.put”c”, 0.97);
map.put”d”, 0.5);
map.put”e”, 0.06);
Serializable exp4 = MVEL.compileExpressionexp3);
System.err.println MVEL.executeExpressionexp4, map, Double.class));
}
这个都很正常,结果是:
944.9999999999999
944.9999999999999
但是稍微改一下,把a的值变为int
public static void mainString[] args) throws Exception {
System.err.println1350*0.7*0.97+0.5*0.06));
String exp3=”a*b*c+d*e)”;
Map map=new HashMap<>);
map.put”a”, 1350); //注意这里的a是int
map.put”b”, 0.7);
map.put”c”, 0.97);
map.put”d”, 0.5);
map.put”e”, 0.06);
Serializable exp4 = MVEL.compileExpressionexp3);
System.err.println MVEL.executeExpressionexp4, map, Double.class));
}
结果变为:
944.9999999999999
945.0
这个时候就不是我们想要的结果了。
具体原因不是很清楚,但是我们目前的解决方法是:
把表达式中的int转为double 。做法很简单,int乘以1.0
上面的表达式变为: String exp3=”1.0*a*b*c+d*e)”;