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

ECMAScript 实现继承的几种方式

时间:2016-12-27 20:28:16      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:实现继承   asc   fat   cto   tor   prototype   new   turn   实现   

1. 原形链

2.借用构造函数

3.组合继承

4.寄生式继承

5.寄生组合式继承

  function object(o){

    function F() {}

    F.prototype = o;

    return new F();

  }

  function inherit Prototype(Children, Father){

    var prototype = (Father.prototype);

    prototype.constructor = Children;

    Children.prototype = prototype;

  }

  

ECMAScript 实现继承的几种方式

标签:实现继承   asc   fat   cto   tor   prototype   new   turn   实现   

原文地址:http://www.cnblogs.com/LionheartCGJ/p/6227339.html

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