美文网首页
ts_字典的使用,小白进

ts_字典的使用,小白进

作者: 浪荡少年 | 来源:发表于2019-09-30 17:12 被阅读0次

    numMapVals: { [key: number]: number } = {}   //声明字典   {}必须赋初值,否则就会是undefault

    /**     * 添加一个数值属性     */      

    AddNumAttr(key: number, val: number): number {

        if (uac.AllNumberAttr[key] != undefined || uac.AllNumberAttr[key] != null) {

             if (this.numMapVals[key] == undefined || this.numMapVals[key] == null) {

                 this.numMapVals[key] = 0

                }

             this.numMapVals[key] += val

             if ((uac.Positive[key] != undefined || uac.Positive[key] != null) && (this.numMapVals[key] < 0)) {

                     this.numMapVals[key] = 0

                }

                return this.numMapVals[key]

            }

            return 0

    }

    /**     * 删除一个数值属性     */      

    相关文章

      网友评论

          本文标题:ts_字典的使用,小白进

          本文链接:https://www.haomeiwen.com/subject/tljjuctx.html