Rhino:Java 数字的行为不像 Javascript 数字
2022-09-02 22:32:35
我有一个可以在我的Javascript程序中访问的Java类的实例
public class ContentProvider {
public Object c(int n) {
switch (n) {
case 1: return 1.1;
case 2: return 2.2;
case 3: return 3.3;
case 4: return "4";
case 5: return new java.util.Date();
}
return null;
}
}
这是 main() 中的代码:
ScriptEngineManager mgr = new ScriptEngineManager();
ScriptEngine engine = mgr.getEngineByName("JavaScript");
engine.put("ctx", new ContentProvider());
res = engine.eval("ctx.c(1)");
System.out.printf("rhino:> %s (%s)%n"
, res
, res != null ? res.getClass().getName() : null
);
简单表达式打印:ctx.c(1)
rhino:> 1.1 (java.lang.Double)
现在这是发生的事情:ctx.c(1) + ctx.c(2)
rhino:> 1.12.2 (java.lang.String)
最后:(ctx.c(1) + ctx.c(2)) * ctx.c(3)
rhino:> nan (java.lang.Double)
Rhino正在执行字符串串联而不是数字算术!以下程序按预期方式工作:
engine.put("a", 1.1);
engine.put("b", 2.2);
engine.put("c", 3.3);
res = engine.eval("(a + b) * c");
输出:
rhino:> 10,89 (java.lang.Double)