- 博客(5)
- 收藏
- 关注
原创 原型模式创建对象常考的方法
首先写一个原型模式创建对象的学生类//学生function Student(name,age){ this.name=name; this.age=age;}//将learning方法写到函数Student的原型上Student.prototype.learning=function(){ console.log(this.age + "岁的" + this.name + "正在写作业");}//将公有属性写到函数Student的原型上Student.prototype
2021-09-27 17:57:19 116 1
原创 js创建对象的四种的方式
一张图概括为:详细内容:简单直接创建对象:好处:简单,方便弊端:无法做到量产var obj={ name:"张三", age:16, eat:function(){ console.log(this.age + "岁的" + this.name + "正在吃饭"); }}console.log(obj);//{name: '张三', age: 16, eat: ƒ}obj.eat();//16岁的张三正在吃饭运行结果图:因为该方法无法...
2021-09-27 16:31:12 145
原创 通过写一个原型链继承,独立完成原型链图
//首先创建一个教师类function Teacher(name,age,course,professional){ this.name=name; this.age=age; this.course=course;//课程 this.professional=professional;//职业}Teacher.prototype.teaching=function(){//上课 console.log(this.name + this.professional +"正在上"+ this
2021-07-31 22:42:42 144
原创 创建人类,教师类,学生类,分别通过三种不同的继承方式(原型继承,冒充继承,混合继承),总结优点缺点
//首先创建一个教师类function Teacher(name,age,course,professional){ this.name=name; this.age=age; this.course=course;//课程 this.professional=professional;//职业}Teacher.prototype.teaching=function(){//上课 console.log(this.name + this.professional +"正在上"+ th.
2021-07-30 21:09:06 691
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人