构造函数与class实现类的区别
首先聊聊ES6 class定义的类和用构造函数new出来的类的一些不同之处文章来源地址https://www.toymoban.com/news/detail-802591.html
- class声明提升
- class声明内部会启用严格模式
- class的所有方法都是不可枚举的
- class的所有方法都没有原型对象prototype
- class定义的类不能被当做函数调用
ES6的class 关键字的实现原理
/**
*ES6的类
**/
class Parent{
constructor(a){
this.a = a;
}
print(){
console.log('parent')
}
}
---------------------------------------Babel 2 ES5------------------------------------------------------
/**
*ES5来实现ES6的类
**/
var Parent = /*#__PURE__*/function (a) {
function Parent() {
_classCallCheck(this, Parent);
this.a = a;
}
_createClass(Parent, [{
key: "print",
value: function print() {
console.log('parent');
}
}]);
return Parent;
}();
文章来源:https://www.toymoban.com/news/detail-802591.html
到了这里,关于构造函数与class实现类的区别的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!