Exemple #1
0
 /// <summary>
 /// 构造方法
 /// </summary>
 /// <param name="str">算式</param>
 public Calculate(CalModel model)
 {
     this.model = model;
     HList      = new ArrayList();
     Vlist      = new ArrayList();
     of         = new OperFactory();
     // cu = new CalUtility(str);
 }