ES6初识- Class

Posted 浮云随笔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6初识- Class相关的知识,希望对你有一定的参考价值。

{
//基本定义和生成实例
class Parent{
//构造函数
constructor(name=‘lisi‘){
this.name=name;
}
//属性get,set
get longName(){
return ‘china‘+this.name;
}
set longName(value){
this.name=value;
}
 
 
}
class Child extends Parent{
constructor(name=‘Child‘){
super(name);
this.type=‘child‘;
}
}
let parent=new Parent(name=‘zhangsan‘);
console.log(‘parent‘,parent);
let child =new Child();
console.log("child",child);
}
{
class Parent{
//构造函数
constructor(name=‘lisi‘){
this.name=name;
}
//属性get,set
get longName(){
return ‘china‘+this.name;
}
set longName(value){
this.name=value;
}
static tell(){
console.log("tell");
}
 
}
Parent.type="test";
Parent.tell();
}

以上是关于ES6初识- Class的主要内容,如果未能解决你的问题,请参考以下文章

react初识生命周期

初识Es6

进军es6---初识es6

初识ES6 解构

ES6初识-Decorator

ES6初识-(冲突)数据结构