zoukankan      html  css  js  c++  java
  • js 原型和原型链

    原型使用方式

    1.通过给Calculator对象的prototype属性赋值对象字面量来设定Calculator对象的原型

     var Calculator = function (decimalDigits, tax) {
                this.decimalDigits = decimalDigits;
                this.tax = tax;
            };
    Calculator.prototype = {
                add: function (x, y) {
                    return x + y;
                },
    
                subtract: function (x, y) {
                    return x - y;
                }
            };
    (new Calculator()).add(1, 3);//4

    2.在赋值原型prototype的时候使用function立即执行的表达式来赋值

    Calculator.prototype = function () {
                add = function (x, y) {
                    return x + y;
                },
    
                subtract = function (x, y) {
                    return x - y;
                }
                return {
                    add: add,
                    subtract: subtract
                }
            } ();
    
    (new Calculator()).add(11, 3);//4

    分步声明:

    上述使用原型的时候,有一个限制就是一次性设置了原型对象,如何分开设置原型的每个属性呢?

    var BaseCalculator = function () {
        //为每个实例都声明一个小数位数
        this.decimalDigits = 2;
    };
            
    //使用原型给BaseCalculator扩展2个对象方法
    BaseCalculator.prototype.add = function (x, y) {
        return x + y;
    };
    
    BaseCalculator.prototype.subtract = function (x, y) {
        return x - y;
    };

    创建完上述代码以后,我们来开始:

    var Calculator = function () {
        //为每个实例都声明一个税收数字
        this.tax = 5;
    };
            
    Calculator.prototype = new BaseCalculator();

    我们可以看到Calculator的原型是指向到BaseCalculator的一个实例上,目的是让Calculator集成它的add(x,y)和subtract(x,y)这2个function,还有一点要说的是,由于它的原型是BaseCalculator的一个实例,所以不管你创建多少个Calculator对象实例他们的原型指向的都是同一个实例。

    var calc = new Calculator();
    acalc.add(1, 1);//2
    //BaseCalculator 里声明的decimalDigits属性,在 Calculator里是可以访问到的
    calc.decimalDigits; //2

    上面的代码,运行以后,我们可以看到因为Calculator的原型是指向BaseCalculator的实例上的,所以可以访问他的decimalDigits属性值,那如果我不想让Calculator访问BaseCalculator的构造函数里声明的属性值,那怎么办呢?

    Calculator.prototype = BaseCalculator.prototype;

    通过将BaseCalculator的原型赋给Calculator的原型,这样你在Calculator的实例上就访问不到那个decimalDigits值了

    属性查找:

    当查找一个对象的属性时,JavaScript 会向上遍历原型链,直到找到给定名称的属性为止,到查找到达原型链的顶部 - 也就是 Object.prototype - 但是仍然没有找到指定的属性,就会返回 undefined

     function foo() {
                this.add = function (x, y) {
                    return x + y;
                }
            }
    
            foo.prototype.add = function (x, y) {
                return x + y + 10;
            }
    
            Object.prototype.subtract = function (x, y) {
                return x - y;
            }
    
            var f = new foo();
            f.add(1, 2); //结果是3,而不是13
            f.subtract(1, 2); //结果是-1

    通过代码运行,我们发现subtract是安装我们所说的向上查找来得到结果的,但是add方式有点小不同,这也是我想强调的,就是属性在查找的时候是先查找自身的属性,如果没有再查找原型,再没有,再往上走,一直插到Object的原型上,所以在某种层面上说,用 for in语句遍历属性的时候,效率也是个问题。

    还有一点我们需要注意的是,我们可以赋值任何类型的对象到原型上,但是不能赋值原子类型的值,比如如下代码是无效的:

    function Foo() {}
    Foo.prototype = 1; // 无效

    hasOwnProperty函数:

    hasOwnProperty是Object.prototype的一个方法,它可是个好东西,他能判断一个对象是否包含自定义属性而不是原型链上的属性,因为hasOwnProperty 是 JavaScript 中唯一一个处理属性但是不查找原型链的函数。

    // 修改Object.prototype
    Object.prototype.bar = 1; 
    var foo = {goo: undefined};
    
    foo.bar; // 1
    'bar' in foo; // true
    
    foo.hasOwnProperty('bar'); // false
    foo.hasOwnProperty('goo'); // true

    只有 hasOwnProperty 可以给出正确和期望的结果,这在遍历对象的属性时会很有用。 没有其它方法可以用来排除原型链上的属性,而不是定义在对象自身上的属性。

    但有个恶心的地方是:JavaScript 不会保护 hasOwnProperty 被非法占用,因此如果一个对象碰巧存在这个属性,就需要使用外部的 hasOwnProperty 函数来获取正确的结果。

    var foo = {
        hasOwnProperty: function() {
            return false;
        },
        bar: 'Here be dragons'
    };
    
    foo.hasOwnProperty('bar'); // 总是返回 false
    
    // 使用{}对象的 hasOwnProperty,并将其上下为设置为foo
    {}.hasOwnProperty.call(foo, 'bar'); // true

    参考:http://www.cnblogs.com/TomXu/archive/2012/01/05/2305453.html

  • 相关阅读:
    关于react fiber的理解
    前段框架——VueX
    前段框架——Vue组件间传值
    前段框架——Vue的get和post请求数据
    前段框架——Vue的一级路由和二级路由
    前端框架——Vue脚手架
    前段框架——Vue
    关于Tomcat的BUG
    验证身份证号格式
    mysql 占用90%多的CPU,解决思路
  • 原文地址:https://www.cnblogs.com/dehuachenyunfei/p/6582946.html
Copyright © 2011-2022 走看看