simpleexample.java
来自「这个是一个计算表达式的java包」· Java 代码 · 共 32 行
JAVA
32 行
package com.singularsys.jepexamples;import com.singularsys.jep.Jep;/** * A simple example that demonstrates the use of JEP for evaluation of a single * expression. * @author Singular Systems */public class SimpleExample { public static void main(String[] args) { // Create a new Jep instance Jep jep = new Jep(); // Add the variable x to the parser and initialize it's value to 10 jep.addVariable("x", 10); // Try parsing and evaluating an example expression try { jep.parse("x+1"); Object result = jep.evaluate(); // If the evaluation succeeds, the result will be printed here System.out.println("x + 1 = " + result); } catch (Exception e) { // If an exception is thrown while parsing or evaluating // information about the error is printed here System.out.println("An error occured: " + e.getMessage()); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?