mvel 표현식이 만나는 구덩이

1600 단어 el 표현식
간단하게 말하면 mvel에서 int와 더블을 곱셈하면 문제가 생길 수 있습니다.

public static void main(String[] args) throws Exception {
                 System.err.println(1350*0.7*(0.97+0.5*0.06));
		 
		   String exp3="a*b*(c+d*e)";
			Map<String, Object> 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.compileExpression(exp3);
			System.err.println( MVEL.executeExpression(exp4, map, Double.class));		 
	}

이것은 모두 정상이다. 결과는:
944.9999999999999
944.9999999999999
하지만 조금만 고치면 a의 값을 int로 바꿉니다

public static void main(String[] args) throws Exception {
                 System.err.println(1350*0.7*(0.97+0.5*0.06));
		 
		   String exp3="a*b*(c+d*e)";
			Map<String, Object> 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.compileExpression(exp3);
			System.err.println( MVEL.executeExpression(exp4, map, Double.class));		 
	}

결과는 다음과 같습니다.
944.9999999999999
945.0
이럴 때는 우리가 원하는 결과가 아니야.구체적인 원인은 분명하지 않지만, 우리의 현재 해결 방법은 표현식 중의 int를 더블로 바꾸는 것이다.방법은 매우 간단하다. int 곱하기 1.0 위의 표현식은 다음과 같다. String exp3 ='1.0*a*b*(c+d*e)'.

좋은 웹페이지 즐겨찾기