码迷,mamicode.com
首页 > Web开发 > 详细

js 原型链

时间:2017-05-05 18:26:54      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:eof   类型   干货   blog   div   本质   函数   undefined   nbsp   

console.log(typeof Object)//null var o = {} ,var obj = new Object, new Dog()
        console.log(typeof Function)
        console.log(typeof Number)
        console.log(typeof Boolean)
        console.log(typeof String)

        //除了undefined js 其余5中类型的封装类型本质都是函数
        console.log(typeof undefined)

        console.log(typeof Date)
        console.log(typeof Array)
        

        console.log(Date.prototype)
        console.log(Object.prototype)

        console.log(Function.prototype)//function(){}

上面是迷惑你的,下面才是干货:

function Father(){
            this.p = ‘p‘
        }

        var f = new Father

        function Son(){
            
        }
        
        //Son 构造函数的原型对象 指向了f
        //这样就继承了f 的p 属性
        Son.prototype = f

        //Son 的实例中有一个__proto__记录了 原型对象 Son.prototype 也就是 对象f
        var s = new Son()
        console.log(s)

        //关键在于f 对象中也有一个 __proto__ 记录了它的原型对象 Father.prototype

        //..... 如此一层一层的实现了继承

        //终点是 null 这就是传说中的无中生有吧
        Object.prototype.__proto__

 

js 原型链

标签:eof   类型   干货   blog   div   本质   函数   undefined   nbsp   

原文地址:http://www.cnblogs.com/xuezizhenchengxuyuan/p/6814244.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!