Package org.nutz.el.arithmetic

Examples of org.nutz.el.arithmetic.RPN.calculate()


  public static Object eval(Context context, String val) {
    ShuntingYard sy = new ShuntingYard();
    RPN rc = new RPN();
    Queue<Object> rpn = sy.parseToRPN(val);
    return rc.calculate(context, rpn);
  }
 
 
  /**
   * 说明:
 
View Full Code Here


    public static Object eval(Context context, String val) {
        ShuntingYard sy = new ShuntingYard();
        RPN rc = new RPN();
        Queue<Object> rpn = sy.parseToRPN(val);
        return rc.calculate(context, rpn);
    }
   
    public String toString() {
        return elstr.toString();
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.