ES6的class的使用

ES6——Class

ES5如何编写类以及类的继承

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function Person(name,sex,type){
this.name = name;
this.sex = sex;
this.type = type

this.showName = function(){
alert(this.name);
};
this.showSex = function (){
alert(this.sex);
};
};

//继承Person类
function Teacher(name,sex,tall,type){
Person.call(this,name,sex,type);
this.tall = tall;
}

ES6如何编写类以及类的继承

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class Person{
constructor(name,sex){
this.name = name;
this.sex = sex;
};
showName(){
alert(this.name);
}
//静态方法
static demoFunc(){
alert("我是静态方法");
}
}
//继承Person类
class Teacher extends Person{
constructor(name,sex,tall){
super(name,sex);
this.tall = tall;
}
showTall(){
alert(this.tall);
}
//覆写父类中的方法
showName(){
alert("我的名字是:"+this.name);
}
}
-------------本文结束感谢您的阅读-------------

本文标题:ES6的class的使用

文章作者:老米的世界

发布时间:2017年09月01日 - 00:00

最后更新:2019年09月05日 - 22:06

原始链接:http://mpfly.github.io/2017/09/01/ES6_Class的使用/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

老米的世界 wechat
欢迎关注我的微信公众号!
坚持原创技术分享,您的支持将鼓励我继续创作!