function SuperType(){ this.property = true; } SuperType.prototype.getSuperValue = function(){ return this.property; }; function SubType(){ this.subproperty = false; } // 继承了 SuperType SubType.prototype = new SuperType(); var subType = new SubType(); console.log(subType.getSuperValue()); // 继承了 SuperType 的 getSuperValue 方法,打印 true
JavaScript之对象继承
内容版权声明:除非注明,否则皆为本站原创文章。