JavaScript 继承
1 通过prototype原型对象继承
function Hello(){
this.a = "吃饭了"
this.b = function(){
console.log("---------123")
}
}
function Test(){
this.c = function(){
console.log("-ccccccccccc")
}
}
Test.prototype = new Hello()
var test = new Test()
test.b()
2 通过构造器实现伪继承
function Hello(){
this.a = "吃饭了"
this.b = function(){
console.log("---------123")
}
}
function Test(){
this.c = function(){
console.log("-ccccccccccc")
}
this.d = Hello
this.d()
}
var test = new Test()
test.b()
3 使用apply或call实现伪继承
function Hello(name,age){
this.a = "吃饭了"
this.b = function(){
console.log("---------123")
}
}
function Test(name,age,content){
Hello.call(this,name,age)
//Hello.apply(this,[name,age])
this.content = content
}
var test = new Test()
test.b()
4 动态的给对象增加属性和方法(现在知道什么是动态语言了么)
function Test(){
}
Test.prototype.a = function(){
console.log('123')
}
Test.prototype.b = "good"
var test = new Test()
console.log("------>" + test.b )
test.a()
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报