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

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

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