function extend(subClass,superClass){
var F = function(){};
F.prototype = superClass.prototype;
subClass.prototype = new F();
subClass.prototype.constructor = subClass;
}
function Person(name){
this.name = name;
}
Person.prototype.getName = function(){
return this.name;
}
function Author(name,books){
Person.call(this,name);
this.books = books;
}
Author.prototype.getBooks = function(){
return this.books;
}
extend(Author,Person);
var p = new Person("张三");
var a = new Author("刘畅");
console.log(p.getName());
console.log(a.getName());
extends in javascript
sun_weitao2024-09-16 11:53
相关推荐
远望清一色10 分钟前
基于MATLAB的实现垃圾分类Matlab源码GIS程序媛—椰子16 分钟前
【Vue 全家桶】7、Vue UI组件库(更新中)confiself20 分钟前
大模型系列——LLAMA-O1 复刻代码解读DogEgg_00123 分钟前
前端八股文(一)HTML 持续更新中。。。ZL不懂前端25 分钟前
Content Security Policy (CSP)乐闻x29 分钟前
ESLint 使用教程(一):从零配置 ESLint木舟100929 分钟前
ffmpeg重复回听音频流,时长叠加问题XiaoLeisj31 分钟前
【JavaEE初阶 — 多线程】Thread类的方法&线程生命周期杜杜的man35 分钟前
【go从零单排】go中的结构体struct和method幼儿园老大*36 分钟前
走进 Go 语言基础语法