摘要:
本文着重解析javascript类继承机制,让你从底层了解javascript是怎样实现“继承”这一概念的。 jimichan在javaeye博客发布,转载请说明。 目前 javascript的实现继承方式并不是通过“extend”关键字来实现的,而是通过constructor function和prototype属性来实现继承。首先我们创建一个animal类js 代码varanimal = function(){ //这就是constructor function 了 this.name = 'pipi'; this.age = 10; this.height = 0; } 阅读全文