類的寫(xiě)法(類不存在變量提升)
class?Person{
????height="178cm";
????constructor(name,age){
????????//屬性
????????this.name?=?name;
????????this.age?=?age;
????}
????????//方法
????getName(){
????????console.log("姓名是:"+this.name);
????}
}
let?student?=?new?Person("張三",20);
student.getName();
靜態(tài)方法和屬性:實(shí)例不會(huì)繼承的屬性和方法
私有屬性(#)
私有屬性及公有屬性鳞青;
??-?私有屬性
????-?能被class內(nèi)部的不同方法訪問(wèn)姓惑,但不能在類外部被訪問(wèn)直砂;
????-?子類不能繼承父類的私有屬性。
getter / setter
extends繼承