码迷,mamicode.com
首页 > 其他好文 > 详细

对象的继承

时间:2014-11-17 12:14:02      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   使用   sp   

bubuko.com,布布扣
function inherit(p){
    if (p == null) throw TypeError();    //p是一个对象,但不能是null
    if (Object.create)                   //如果Object.create()存在
        return Object.create(p);         //直接使用它
    var t = typeof(p);                   //否则进行进一步检测
    if (t !== "object" && t !== "function") throw TypeError;
    function f() {};                     //定义一个空构造函数
    f.prototype = p;                     //将其原型属性设置为p
    return new f();                      //使用f()创建p的继承对象
}
View Code

参数为需要继承的对象

对象的继承

标签:style   blog   http   io   color   ar   os   使用   sp   

原文地址:http://www.cnblogs.com/scrit/p/4103112.html

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