Dev./javascript

[JS] 메소드 오버라이딩

인쥭 2022. 4. 23. 05:30
반응형
class Parent {
    constructor(name) {
        this.name = name;
    } 
    
    get who() {
        return this.name + ' is parent';
    }
}

class Child extends Parent {
    constructor(name) {
        super(name);
    }
    
    get who() {
        // return super.who;
        return this.name + ' is child';
    }
}

const parent = new Parent('parent');
const child = new Child('child');

console.log(parent.who);
console.log(child.who);
  • 그냥 똑같은 이름의 메소드를 자식 클래스에서 재정의하면 된다.
  • 부모 클래스의 무언가를 호출하고 싶다면 super 키워드를 사용할 수 있다.