• 第6章 面向对象的程序设计(待完善)


    属性类型:

        数据属性--4大行为:[[Configurable]]

                  [[Enumerable]]

                  [[Writable]]

                  [[Value]]

             修改方法 obj.defineProperty(obj,"name",{

                  Configurable:false,

                  ....

                 })

        访问器属性--4大特性:[[Configurable]]

                   [[Enumerable]]

                   [[Get]]

                   [[Set]]

              

              定义方法 obj.defineProperty(obj,"name",{

                  Configurable:false,

                  ....

                 })

    定义多个属性:

    object.defineProperties(book,{

      _year:{

        value:2004

      },

      

      _edition:{

        value:1

      },

      

      year:{

        get:function(){

          return this._year;

        },

        set:function(newValue){

          if(newValue>2004){

            this._year = newValue;

            this._edition =+ newValue - 2004;

          }

        }

      },

    })

    读取属性的特性

      Object.getOwnPropertyDescriptor()

  • 相关阅读:
    php开发_图片验证码
    php开发_php环境搭建
    中序线索二叉树算法
    WPF技巧(1)异步绑定
    WPF技巧(2)绑定到附加属性
    nhibernate 抓取策略
    wpf 控件开发基础(6) 单一容器(Decorator)
    WPF技巧(3)监测属性变更
    Caliburn v2 变更启动初始化
    wpf单容器中的Chrome
  • 原文地址:https://www.cnblogs.com/alex-web/p/5000583.html
Copyright © 2020-2023  润新知