⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 simpleexample.java

📁 这个是一个计算表达式的java包
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -