JEP簡介
量。
簡單示例
import com.singularsys.jep.Jep;
import com.singularsys.jep.JepException;
public class SimpleExample
{ public static void main(String[] args) { Jep jep = new Jep(); //一個數學表達式
String exp = "((a+b)*(c+b))/(c+a)/b"; //給變數賦值
jep.addVariable("a", 10);
jep.addVariable("b", 10);
jep.addVariable("c", 10);
try { //執行
jep.parse(exp);
Object result = jep.evaluate();
System.out.println("計算結果: " + result); }
catch (JepException e)
{
System.out.println("An error occured: " + e.getMessage());
}
}
}