zoukankan      html  css  js  c++  java
  • js总结(三):面向对象,prototype ,oo模拟

    http://aralejs.org/class/docs/competitors.html

    http://javascript.crockford.com/prototypal.html

    prototype

    prototype属性的值实际就是Object对象的实例,js将忽视任何设置为原始值的prototype属性。

    protoype拥有Object()对象实例属性和方法,prototype 包含了2个属性,一个是constructor ,另外一个是__proto__。

    这个就是object的实例属性.

    原型链,实际返回的是链中找到的第一个结果。

    用新对象替换prototype属性会删除默认的constructor属性。new 创建的实例的constructor指向的是Object()了,而不是他的构造函数了。

    实例的constructor是靠prototype。


    var A =function(){ var b =1; } A.prototype = {}; var a = new A; console.log(a.constructor); console.log(a instanceof A);//true了

    function Object() { [native code] } 
    true

    var A =function(){
       var b =1;
    }
    A.prototype = {};
    var a = function(){};
    a.constructor = A;
    console.log(a instanceof A);//false 

    instanceof与constructor没有关系了

    Here is another formulation:

    Object.prototype.begetObject = function () {
        function F() {}
        F.prototype = this;
        return new F();
    };
    
    newObject = oldObject.begetObject();

    2007-04-02

    The problem with the object function is that it is global, and globals are clearly problematic. The problem with Object.prototype.begetObject is that it trips up incompetent programs, and it can produce unexpected results when begetObject is overridden.

    So I now prefer this formulation:

    if (typeof Object.create !== 'function') {
        Object.create = function (o) {
            function F() {}
            F.prototype = o;
            return new F();
        };
    }
    newObject = Object.create(oldObject);

    2008-04-07

    jquery对象如何构建  http://nuysoft.iteye.com/blog/1182087

    http://www.cnblogs.com/baochuan/archive/2012/11/22/2782343.html

  • 相关阅读:
    MyBatis笔记:xml映射文件
    MyBatis笔记:xml配置文件
    JSP获取当前系统时间并显示
    使用<jsp:forward>和<jsp:param>
    JSP简单总结
    网页版学生管理系统简易版DOM
    当为servlet配置时出现servlet标签报错
    给js的事件驱动函数添加快捷键
    js的表格对象和DOM联合操作
    Centos7安装Greenplum5.3单机版教程
  • 原文地址:https://www.cnblogs.com/danghuijian/p/4009971.html
Copyright © 2011-2022 走看看