Ejemplo n.º 1
0
        public 变量声明和初始化(类型 类型, string name, 表达式 初始值, int 变量名位置, char[] chars, int iLeft) : base(chars, iLeft)
        {
            this.类型   = 类型;
            this.name = name;
            this.初始值  = 初始值;

            this.变量名位置 = 变量名位置;
        }
Ejemplo n.º 2
0
        public 变量声明和初始化(类型 类型, string name, 表达式 初始值, int 变量位置_iLeft)
        {
            this.类型   = 类型;
            this.name = name;
            this.初始值  = 初始值;

            this.变量位置_iLeft = 变量位置_iLeft;
        }
Ejemplo n.º 3
0
 public 形参(类型 类型, string name, 表达式 初始值, int 变量名位置, char[] chars, int iLeft)
     : base(类型, name, 初始值, 变量名位置, chars, iLeft)
 {
 }
Ejemplo n.º 4
0
 public 全局变量(类型 类型, string name, 表达式 初始值, int 变量位置_iLeft)
     : base(类型, name, 初始值, 变量位置_iLeft)
 {
 }