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

📄 context.java

📁 JAVA 数学程序库 提供常规的数值计算程序包
💻 JAVA
字号:
package jmathlib.core.interpreter;

//import MathLib.Tokens.*;

/**A context object contains the variables and code for the executing function*/
public class Context implements java.io.Serializable 
{
     /**Reference to the contexts variables*/
     private VariableList variables;
        
     /**Reference to the contexts calling context*/
     private Context parent;
    
     /**The name of the function that defined this context, used for diagnostics*/
     //private String functionName;

     /**Create a Context with an empty variable list, used to construct the global context*/        
     public Context()
     {
         variables    = new VariableList();
         parent       = null;
     }

     /**Create a Context with the supplied values
        @param _variables = the variable list of the new context
        @param _parent    = the calling context*/
     public Context(VariableList _variables, Context _parent)
     {
         variables    = _variables;
         parent       = _parent;
     }
        
     /**
      * 
      * @return
      */
     public Context getParent()
     {
         return parent;
     }

     /**
      * 
      * @param _parent
      */
     public void setParent(Context _parent)
     {
         parent = _parent;
     }

     /**
      * 
      * @return
      */
     public VariableList getVariables()
     {
         return variables;
     }

     /**
      * 
      */
     public Object clone()
     {
         VariableList _variables = null;
         if(variables != null)
             _variables = ((VariableList)variables.clone());

         //Context context = new Context(_variables, _code, null);
         Context context = new Context(_variables, null);
         //context.setFunctionName(functionName);
         return context;
     }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -