ES6 class
Posted 我的大刀早已饥渴难耐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 class相关的知识,希望对你有一定的参考价值。
1:class继承
class Student { constructor(name) { this.name = name; } hello() { alert(‘Hello, ‘ + this.name + ‘!‘); } }
创建一个Student
对象代码和前面章节完全一样:var xiaoming = new Student(‘小明‘);
xiaoming.hello();
class PrimaryStudent extends Student {
constructor(name, grade) {
super(name); // 记得用super调用父类的构造方法!
this.grade = grade;
}
myGrade() {
alert(‘I am at grade ‘ + this.grade);
}
}
注意PrimaryStudent
的定义也是class关键字实现的,而extends
则表示原型链对象来自Student
。子类的构造函数可能会与父类不太相同,例如,PrimaryStudent
需要name
和grade
两个参数,并且需要通过super(name)
来调用父类的构造函数,否则父类的name
属性无法正常初始化。
PrimaryStudent
已经自动获得了父类Student
的hello
方法,我们又在子类中定义了新的myGrade
方法。
ES6引入的class
和原有的javascript原型继承有什么区别呢?实际上它们没有任何区别,class
的作用就是让JavaScript引擎去实现原来需要我们自己编写的原型链代码。简而言之,用class
的好处就是极大地简化了原型链代码。
以上是关于ES6 class的主要内容,如果未能解决你的问题,请参考以下文章