JavaScript基于原型的继承

 

在一个纯粹的原型模式中,我们会摒弃类,转而专注于对象,基于原型的继承相比基于类的继承的概念上更为简单

if( typeof Object.beget  !== ‘function‘)
{
     Object.beget = function(o) {
               var F = function() {};
               F.prototype = o;
               return new F();
      }
}
var myMammal = {
      
      name : ‘Herb the Mammal‘,
      get_name : function() {
                return this.name;
         },
        says : function() {
                 return this.saying || ‘ ‘;
           }
};
var myCat = Object.beget(myMammal);
myCat.name = ‘Henrietta‘;
myCat.saying = ‘meow‘;
myCat.get_name = function() {
  return this.says + ‘  ‘+ this.name + ‘ ‘+this.says;
};

  

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。