클래스 상속
클래스의 인스턴스를 생성하기 위해
new
키워드를 사용합니다. 기본 클래스에서 상속하려면 extends
키워드를 사용할 수 있습니다.class Person {
name;
age;
constructor(name) {
this.name = name;
this.age = 33;
}
getName() {
return this.name;
}
}
// creating new instance of a class Person
const person = new Person("Parwinder");
console.log(person.getName()); // Parwinder
Person 클래스를 확장하기 위해
extend
를 사용합시다.class Person {
name;
age;
constructor(name) {
this.name = name;
this.age = 33;
}
getName() {
return this.name;
}
}
const person = new Person("Parwinder");
console.log(person.getName()); // Parwinder
class Female extends Person {
gender;
constructor(name) {
super(name);
this.gender = "Female";
}
}
const female = new Female("Lauren");
console.log(female.getName()); // Lauren
console.log(female instanceof Female); // true
console.log(female instanceof Person); // true
super
키워드를 사용하면 부모 클래스 생성자를 사용할 수 있습니다. super
를 사용하여 부모/기본 클래스에서 메서드를 호출할 수도 있습니다.ES6 지원 클래스:
super
Reference
이 문제에 관하여(클래스 상속), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bhagatparwinder/class-inheritance-l3l텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)