클래스

Andy·2023년 9월 13일
0

자바스크립트

목록 보기
30/39

클래스는 프로토타입의 문법적 설탕인가?

자바스크립트는 프로토타입 기반 객체지향 언어다. 비록 다른 객체지향 언어와의 차이점에 대한 논쟁이 있기 하지만 자바스크립트는 강력한 객체지향 프로그래밍 능력을 지니고 있다.

//es5 생성자 함수
var Person=(function(){
    //생성자 함수
    function Person(name){
        this.name=name;
    };
    //프로토타입 메서드
    Person.prototype.sayHi=function(){
        console.log(`hi my name is ${this.name}`);
    };
    //생성자 함수 반환
    return Person;
}());

//인스턴스 생성
var me = new Person('andy');
me.sayHi(); //hi my name is andy

❗️클래스와 생성자 함수는 모두 프로토타입 기반의 인스턴스를 생성하지만 정확히 동일하게 동작하지는 않는다. 클래스는 생성자 함수보다 엄격하며 생성자 함수에서는 제공하지 않는 기능도 제공한다.

  1. 클래스를 new연산자 없이 호출하면 에러가 발생한다. 하지만 생성자 함수를 new 연산자 없이 호출하면 일반 함수로서 호출된다.
  2. 클래스는 상속을 지원하는 extends 와 super 키워드를 제공한다. 하지만 생성자 함수는 extends와 super 키워드를 지원하지 않는다.
  3. 클래스는 호이스팅이 발생하지 않는 것처럼 동작한다. 하지만 함수 선언문으로 정의된 생성자 함수는 함수 호이스팅이, 함수 표현식으로 정의한 생성자 함수는 변수 호이스팅이 발생한다.
  4. 클래스 내의 모든 코드에는 암묵적으로 strict mode가 지정되어 실행되며 strict mode를 해제할 수 없다. 하지만 생성자 함수는 암묵적으로 strict mode가 지정되지 않는다.
  5. 클래스의 constructor, 프로토타입 메서드, 정적 메서드는 모두 프로퍼티 어트리뷰트 [[Enumerable]]의 값이 false다. 다시 말해, 열거되지 않는다.

클래스 정의

클래스는 class 키워드를 사용하여 정의한다. 클래스 이름은 생성자 함수와 마찬가지로 파스칼 케이스를 사용하는 것이 일반적이다. 파스칼 케이스를 사용하지 않아도 에러가 발생하지는 않는다.

//클래스 선언문
class person{};

일반적이지는 않지만 함수와 마찬가지로 표현식으로 클래스를 정의할 수도 있다. 이때 클래스는 함수와 마찬가지로 이름을 가질 수도 있고, 갖지 않을 수도 있다.

//익명 클래스 표현식
const Person=class {};

//기명 클래스 표현식
const Person2= class myClass {}; 

클래스 몸체에는 0개 이상의 메서드만 정의할 수 있다. 클래스 몸체에서 정의할 수 있는 메서드는 constructor(생성자), 프로토타입 메서드, 정적 메서드의 세 가지가 있다.

//클래스 선언식
class Person{
    //생성자
    constructor(name){
        //인스턴스 생성 및 초기화
        this.name=name;
    }
    
    //프로토타입 메서드
    sayHi(){
        console.log(`Hi! My name is ${this.name}`);
    }

    //정적 메서드
    static sayHello(){
        console.log('hello');
    }
}

//인스턴스 생성
const me =new Person('andy');

//인스턴스의 프로토타입 참조
console.log(me.name); //andy
//프로토타입의 메서드 호출
me.sayHi(); //Hi! My name is andy
//정적 메서드 호출
Person.sayHello(); //hello

클래스 호이스팅

클래스는 함수로 평가된다.

class Person{};
console.log(typeof Person); //function

클래스 선언문으로 정의한 클래스는 함수 선언문과 같이 소스코드 평가 과정, 즉 런타임 이전에 먼저 평가되어 함수 객체를 생성한다. 이때 클래스가 평가되어 생성된 함수 객체는 생성자 함수로서 호출할 수 있는 함수, 즉 constructor다. 생성자 함수로서 호출되 수 있는 함수는 함수 정의가 평가되어 함수 객체를 생성하는 시점에 프로토타입도 더불어 생성된다. 프로토타입과 생성자 함수는 단독으로 존재할 수 없고 언제나 쌍으로 존재하기 때문이다.

단, 클래스는 클래스 정의 이전에 참조할 수 없다.

console.log(Person); //ReferenceError: Cannot access 'Person' before initialization

//클래스 선언문
class Person{}

클래스 선언문은 마치 호이스팅이 발생하지 않는 것처럼 보이나 그렇지 않다. 다음 예제를 살펴보자.

const Person=' ';

{
    //호이스팅이 발생하지 않는다면 ''이 출력되어야 한다.
    console.log(Person); //ReferenceError: Cannot access 'Person' before initialization
    
    //클래스 선언문
    class Person{};
}

클래스 선언문은 변수 선언, 함수 정의와 마찬가지로 호이스팅이 발생한다. 단, 클래스는 let, const 키워드로 선언한 변수처럼 호이스팅된다. 따라서 클래스 선언문 이전에 일시적 사각지대(Temporal Dead Zone) 에 빠지기 때문에 호이스팅이 발생하지 않는 것처럼 동작한다.

인스턴스 생성

클래스는 생성자 함수이며 new 연산자와 함께 호출되어 인스턴스를 생성한다.

class Person{};

//인스턴스 생성
const me = new Person();
console.log(me); //Person{}

함수는 new연산자의 사용 여부에 따라 인반 함수로 호출되거나 인스턴스 생성을 위한 생성자 함수로 호출되지만 클래스는 인스턴스를 생성하는 것이 유일한 존재 이유이므로 반드시 new연산자와 함께 호출해야 한다.

class Person{};

//클래스를 new연산자 없이 호출하면 타입 에러가 발생한다.
const me =  Person();
console.log(me); //TypeError: Class constructor Person cannot be invoked without 'new'

클래스 표현식으로 정의된 클래스의 경우 다음 예제와 같이 클래스를 가리키는 식별자(Person)를 사용해 인스턴스를 생성하지 않고 기명 클래스 표현식의 클래스 이름(MyClass)을 사용해 인스턴스를 생성하면 에러가 발생한다.

const Person= class myClass{};

const me = new Person();
//클래스 이름 MyClass는 함수와 동일하게 클래스 몸체 내부에서만 유요한 식별자다.
console.log(myClass); //ReferenceError: myClass is not defined

const you= new Person(); //ReferenceError: myClass is not defined

이는 기명 함수 표현식과 마찬가지로 클래스 표현식에서 사용한 클래스 이름은 외부 코드에서 접근 불가능하기 때문이다.

메서드

클래스 몸체에는 0개 이상의 메서드만 선언할 수 있다. 클래스 몸체에서 정의할 수 있는 메서드는 constructor(생성자), 프로토타입 메서드, 정적 메서드의 세 가지가 있다.

constructor

constructor 는 인스턴스를 생성하고 초기화하기 위한 특수한 메서드다. constructor는 이름을 변경할 수 없다.

class Person{
    //생성자
    constructor(name){
      //인스턴스 생성 및 초기화
        this.name=name;
    }
};

업로드중..
❗️모든 함수 객체가 가지고 있는 prototype 프로퍼티가 가리키는 프로토타입 객체의 constructor 프로퍼티는 클래스 자신을 가리키고 있다. 이는 클래스가 인스턴스를 생성하는 생성자 함수라는 것을 의미한다. 즉, new연산자와 함께 클래스를 호출하면 클래스는 인스턴스를 생성한다.

class Person{
    //생성자
    constructor(name){
        //인스턴스 생성 및 초기화
        this.name=name;
    }
};

//생성자 함수
function Person(name){
    this.name=name;

}

그런데 흥미로운 것은 클래스가 평가되어 생성된 함수 객체나 클래스가 생성한 인스턴스 어디에도 constructor 메서드가 보이지 않는다는 것이다. 이는 클래스 몸체에 정의한 constructor가 단순한 메서드가 아니라는 것을 의미한다.❗️constructor는 메서드로 해석되는 것이 아니라 클래스가 평가되어 생성한 함수 객체 코드의 일부가 된다. 다시 말해, 클래스 정의가 평가되면 constructor의 기술된 동작을 하는 함수 객체가 생성되다.

클래스의 constructor 메서드와 프로토타입의 constructor 프로퍼티

❗️클래스의 constructor 메서드와 프로토타입의 constructor 프로퍼티는 이름이 같아 혼동하기 쉽지만 직접적인 관련이 없다. 프로토타입의 constructor 프로퍼티는 모든 프로토타입이 가지고 있는 프로퍼티 이며 생성자 함수를 가리킨다.

constructor는 생성자 함수와 유사하지만 몇 가지 차이가 있다. constructor는 클래스 내에 최대 한 개만 존재할 수 있다. 만약 클래스가 2개 이상의 constructor를 포함하면 문법 에러가 발생한다.

class Person{
    constructor(){}; //SyntaxError: A class may only have one constructor
    constructor(){};
}

constructor는 생략 가능하다.
constructor를 생략하면 클래스에 다음과 같이 빈 constructor가 암묵적으로 정의된다. constructor를 생략한 클래스는 빈 constructor에 의해 빈 객체를 생성한다.

class Person{
    //constructor는 생략하면 아래와 같이 빈 constructor가 암묵적으로 정의된다.
    constructor(){};
}

//빈 객체가 생성된다.
const me= new Person('andy'); //Person {}
console.log(me);

프로퍼티가 추가되어 초기화된 인스턴스를 생성하려면 constructor 내부에서 this에 인스턴스 프로퍼티를 추가한다.

class Person{
    constructor(){
        //고정 값으로 인스턴스 초기화
        this.name='andy';
        this.address='ilsan';
    }
}

//인스턴스 프로퍼티가 초가된다.
const me = new Person();
console.log(me); //Person { name: 'andy', address: 'ilsan' }

인스턴스를 생성할 때 클래스 외부에서 인스턴스의 프로퍼티 초기값을 전달하려면 다음과 같이 constructor에 매개변수를 선언하고 인스턴스를 생성할 때 초기값을 전달한다. ❗️이때 초기값은 constructor의 매개변수에게 전달된다.

class Person{
    constructor(name,age){
        //인수로 인스턴스 초기화
        this.name=name;
        this.age=age;
    }
};

//인수로 초기값을 전달한다. 초기값은 constructor에 전달된다.
const me= new Person('andy', 25);
console.log(me); //Person { name: 'andy', age: 25 }

이처럼 constructor 내부에서는 인스턴스의 생성과 동시에 인스턴스 프로퍼티 추가를 통해 인스턴스의 초기화를 실행한다. ❗️따라서 인스턴스를 초기화하려면 constructor를 생략해서는 안된다.

constructor는 별도의 반환문을 갖지 않아야 한다. 이는 "생성자 함수의 인스턴스 생성 과정"에서 살펴보았듯이 new 연산자와 함께 클래스가 호출되면 생성자 함수와 동일하게 암묵적으로 this, 즉 인스턴스를 반환하기 때문이다.

만약 this가 아닌 다른 객체를 명시적으로 반환하면 this, 즉 인스턴스가 반환되지 못하고 return 문에 명시한 객체가 반환된다.

class Person{
    constructor(name){
        this.name=name;

        //명시적으로 객체를 반환하면 암묵적은 this가 반환된다.
        return {};
    }
};

const me = new Person('andy');
console.log(me); //{}

하지만 명시적으로 원시값을 반환하면 원시값 반환은 무시되고 암묵적으로 this가 반환된다.

class Person{
    constructor(name){
        this.name=name;

        //명시적으로 원시값을 반환하면 원시값 반환은 무시되고 암묵적으로 this가 반환된다. 
        return 100;
    }
};

const me = new Person('andy');
console.log(me); //Person { name: 'andy' }

이처럼 constructor 내부에서 명시적으로 this가 아닌 다른 값을 반환하는 것은 클래스의 기본 동작을 훼손한다. 따라서 constructor 내부에서 return 문은 반드시 생략해야 한다.

프로토타입 메서드

생성자 함수를 사용하여 인스턴스를 생성하는 경우 프로토타입 메서드를 생성하기 위해서는 다음과 같이 명시적으로 프로토타입에 메서드를 추가해야 한다.

function Person(name){
    this.name=name
}

const me = new Person('andy');

//프로토타입 메서드
Person.prototype.sayHi=function(){
    console.log(`hi my name is ${this.name}`);
}
me.sayHi(); //hi my name is andy

클래스 몸체에서 정의한 메서드는 생성자 함수에 의한 객체 생성 방식돠는 다르게 클래스의 prototype 프로퍼티에 메서드를 추가하지 않아도 기본적으로 프로토타입 메서드가 된다.

class Person{
    constructor(name){
        this.name=name;
    }

    sayHi(){
        console.log(`hi my name is ${this.name}`);
    }
};

const me = new Person('andy');
me.sayHi(); //hi my name is andy

생성자 함수와 마찬가지로 클래스가 생성한 인스턴스는 프로토타입 체인의 일원이 된다.

//me 객체의 프로토타입은 Person.prototype 이다.
console.log(Object.getPrototypeOf(me)===Person.prototype); //true

//Person.prototype의 프로토타입은 Object.prototype이다.
console.log(Object.getPrototypeOf(Person.prototype)===Object.prototype); //true

//me객체의 constructor는 Person 클래스다.
console.log(me.constructor === Person); //true

❗️결국 클래스는 생성자 함수와 같이 인스턴스를 생성하는 생성자 함수라고 볼 수 있다. 다시 말해, 클래스는 생성자 함수와 마찬가지로 프로토타입 기반의 객체 생성 메커니즘이다.

정적 메서드

정적 프로퍼티/메서드 에서 살펴보았듯이 정적 메서드는 인스턴스를 생성하지 않아도 호출할 수 있는 메서드를 말한다.

//생성자 함수
function Person(name){
    this.name=name;
}
//정적 메서드
Person.sayHi=function(){
    console.log(`hi`);
}

//정적 메서드 호출
Person.sayHi();

클래스에서는 메서드에 static 키워드를 붙이면 정적 메서드(클래스 메서드)가 된다.

class Person{
    constructor(name){
        //인스턴스 생성 및 초기화
        this.name=name;
    }

    //정적 메서드
    static sayHi(){
        console.log(`hi`);
    }
};

//정적 메서드는 클래스로 호출한다.
//정적 메서드는 인스턴스 없이도 호출할 수 있다.
Person.sayHi(); //hi

정적 메서드는 인스턴스로 호출할 수 없다. 정적 메서드가 바인딩된 클래스는 인스턴스의 프로토타입 체인상에 존재하지 않기 때문이다. 다시 말해, 인스턴스의 프로토타입 체인 상에는 클래스가 존재하기 않기 때문에 인스턴스로 클래스의 메서드를 상속받을 수 없다.

//정적 메서드는 클래스로 호출한다.
//정적 메서드는 인스턴스 없이도 호출할 수 있다.
Person.sayHi(); //hi

const me = new Person('han');
me.sayHi(); //TypeError: me.sayHi is not a function

정적 메서드와 프로토타입 메서드의 차이

정적 메서드와 프로토타입 메서드의 차이는 다음과 같다.
1. 정적 메서드와 프로토타입 메서드는 자신이 속해 있는 프로토타입 체인이 다르다.
2. 정적 메서드는 클래스로 호출하고 프로토타입 메서드는 인스턴스로 호출한다.
3. 정적 메서드는 인스턴스 프로퍼티를 참조할 수 없지만 프로토타입 메서드는 인스턴스 프로퍼티를 참조할 수 있다.

class Square{
    //정적 메서드
    static area(width, height){
        return width*height;
    }
}
console.log(Square.area(10,10)) //100

정적 메서드 area는 2개의 인수를 전달받아 면적을 계산한다. 이때 정적 메서드 area는 인스턴스 프로퍼티를 참조하지 않는다. 만약 인스턴스 프로퍼티를 참조해야 한다면 정적 메서드 대신 프로토타입 메서드를 사용해야 한다.

class Square2{
    constructor(width, height){
        this.width=width;
        this.height=height;
    }
    area(){
        return this.width*this.height;
    }
};

const rectangle= new Square2(10,30);
console.log(rectangle.area()); //300

프로토타입 메서드는 인스턴스로 호출해야 하므로 프로토타입 메서드 내부의 this는 프로토타입 메서드를 호출한 인스턴스를 가리킨다. 위 예제의 경우 rectangle객체로 프로토타입 메서드 area를 호출했기 때문에 area 내부의 this는 rectangle객체를 가리킨다.

정적 메서드는 클래스로 호출해야 하므로 정적 메서드 내부의 this는 인스턴스가 아닌 클래스를 가리킨다. 즉, 프로토타입 메서드와 정적 메서드 내부의 this 바인딩이 다르다.

❗️따라서 메서드 내부에서 인스턴스 프로퍼티를 참조할 필요가 있다면 this를 사용해야 하며, 이러한 경우 프로토타입 메서드로 정의해야 한다. 하지만 메서드 내부에서 인스턴스 프로퍼티를 참조해야 할 필요가 없다면 this를 사용하지 않게 된다.
❗️표준 빌트인 객체인 Math, Number, JSON, Object, Reflect 등은 다양한 정적 메서드를 가지고 있다. 이들 정적 메서드는 애플리케이션 전역에서 사용할 유틸리티 함수다.

//표준 빌트인 객체의 정적 메서드
console.log(Math.max(1,2,3)); //3
console.log(Number.isNaN(NaN)); //true
console.log(JSON.stringify({a:1})); //{"a":1}
console.log(Reflect.has({a:1},'a')); //true

이처럼 클래스 또는 생성자 함수를 하나의 네임스페이스로 사용하여 정적 메서드를 모아 놓으면 이름 충돌 가능성을 줄여주고 관련 함수들을 구조화할 수 있는 효과가 있다. ❗️이 같은 이유로 정적 메서드는 애플리케이션 전역에서 사용할 유틸리티 함수를 전역 함수로 정의하지 않고 메서드로 구조화할 때 유용하다.

클래스에서 정의한 메서드의 특징

클래스에서 정의한 메서드는 다음과 같은 특징을 갖는다.
1. function 키워드를 생략한 메서드 축약 표현을 사용한다.
2. 객체 리터럴과는 다르게 클래스에 메서드를 정의할 때는 콤마가 필요 없다.
3. 암묵적으로 strict mode로 실행된다.
4. for...in 문이나 Object.keys 메서드 등으로 열거할 수 없다. 즉 프로퍼티의 열거 가능 여부를 나타내며, 불리언 값을 갖는 프로퍼티 어트리뷰트 [[Enumerable]]의 값이 false 다.
5. 내부 메서드 [[Construct]]를 갖지 않는 non-construct다. 따라서 new 연산자와 함께 호출할 수 없다.

클래스의 인스턴스 생성 과정

new 연산자와 함께 클래스를 호출하면 생성자 함수와 마찬가지로 클래스의 내부 메서드 [[Construct]]가 호출된다. 클래스는 new 연산자 없이 호출할 수 없다. 이때 "생성자 함수의 인스턴스 생성 과정"에서 살펴본 바와 유사하게 다음과 같은 과정을 거쳐 인스턴스가 생성된다.

1. 인스턴스 생성과 this 바인딩

new 연산자와 함께 클래스를 호출하면 constructor 내부 코드가 실행되기에 앞서 암묵적으로 빈 객체가 생성된다. 이 빈 객체가 바로 (아직 완성되지 않았지만) 클래스가 생성한 인스턴스다. 이때 클래스가 생성한 인스턴스의 프로토타입으로 클래스의 prototype 프로퍼티가 가리키는 객체가 설정된다. 그리고 암묵적으로 생성된 빈 객체, 즉 인스턴스는 this에 바인딩된다. 따라서 constructor 내부의 this는 클래스가 생성한 인스턴스를 가리킨다.

2. 인스턴스 초기화

Constructor 내부 코드가 실행되어 this에 바인딩되어 있는 인스턴스를 초기화한다. 즉, this에 바인딩 되어 있는 인스턴스에 프로퍼티를 추가하고 constructor가 인수로 전달받은 초기값으로 인스턴스의 프로퍼티 값을 초기화한다. 만약 constructor가 생략되었다면 이 과정도 생략한다.

3. 인스턴스 반환

클래스의 모든 처리가 끝나면 완성된 인스턴스가 바인딩된 this가 암묵적으로 반환된다.

class Person{
    constructor(name){
        //1. 암묵적으로 인스턴스가 생성되고 this에 바인딩된다.
        console.log(this);

        //2. this에 바인딩되어 있는 인스턴스를 초기화한다.
        this.name=name;

        //3. 완성된 인스턴스가 바인딩된 this가 암묵적으로 반환된다.
    }
    
};

프로퍼티

인스턴스 프로퍼티

인스턴스 프로퍼티는 constructor 내부에서 정의해야 한다.

class Person{
    constructor(name){
        //인스턴스 프로퍼티
        this.name=name;
    }

}
const me= new Person('andy');
console.log(me); //Person { name: 'andy' }

생성자 함수에서 생성자 함수가 생성할 인스턴스의 프로퍼티를 정의하는 것과 마찬가지로 constructor 내부에서 this에 인스턴스 프로퍼티를 추가한다. 이로써 클래스가 암묵적으로 생성한 빈 객체, 즉 인스턴스에 프로퍼티가 추가되어 인스턴스가 초기화된다.

class Person{
    constructor(name){
        //인스턴스 프로퍼티
        this.name=name; //name 프로퍼티는 public하다.
    }
}

const me = new Person('andy');
//name은 public 하다.
console.log(me.name); //andy

constructor 내부에서 this에 추가한 프로퍼티는 언제나 클래스가 생성한 인스턴스의 프로퍼티가 된다. ES6의 클래스는 다른 객체지향 언어처럼 private, public, protected 키워드와 같은 접근 제한자를 지원하지 않는다. 따라서 인스턴스 프로퍼티는 언제나 public 하다.

접근자 프로퍼티

접근자 프로퍼티는 자체적으로 값[[Value]]을 갖지 않고 다른 데이터 프로퍼티의 값을 읽거나 저장할 때 사용하는 접근자 함수로 구성된 프로퍼티다.

const person ={
    //데이터 프로퍼티
    firstName: 'andy',
    lastName: 'han',

    //fullName은 접근자 함수로 구성된 접근자 프로퍼티다.
    //getter 함수
    get fullName(){
        return `${this.firstName} ${this.lastName}`;
    },
    //setter 함수
    set fullName(name){
        [this.firstName,this.lastName]=name.split(' ');
    }
};

//데이터 프로퍼티를통한 프로퍼티 값의 참조
console.log(`${person.firstName} ${person.lastName}`); //andy han

//접근자 프로퍼티를 통한 프로퍼티 값의 저장
//접근자 프로퍼티 fullName에 값을 저장하면 setter 함수가 호출된다.
console.log(person); //{ firstName: 'andy', lastName: 'han', fullName: [Getter/Setter] }
person.fullName='han jahyeok';
console.log(person); //{ firstName: 'han', lastName: 'jahyeok', fullName: [Getter/Setter] }

//접근자 프로퍼티를 통한 프로퍼티 값의 참조
//접근자 프로퍼티 fullName에 접근하면 getter함수가 호출된다.
console.log(person.fullName); //han jahyeok

//fullName은 접근자 프로퍼티다
//접근자 프로퍼티는 get, set, enumerable, configurable 프로퍼티 어트리뷰트를 갖는다.
console.log(Object.getOwnPropertyDescriptor(person,'fullName'));
/*{
  get: [Function: get fullName],
  set: [Function: set fullName],
  enumerable: true,
  configurable: true
}*/

접근자 프로퍼티는 클래스에서도 사용할 수 잇다. 위 예제의 객체 리터럴을 클래스로 표현하면 다음과 같다.

class Person{
    constructor(firstName, lastName){
        this.firstName=firstName;
        this.lastName=lastName;
    }

    //fullName은 접근자 함수로 구성된 접근자 프로퍼티다.
    //getter 함수
    get fullName(){
        return `${this.firstName} ${this.lastName}`;
    }

    set fullName(name){
        [this.firstName,this.lastName]=name.split(' ');
    }
}

const me = new Person('andy','han');

//데이터 프로퍼티를 통한 프로퍼티 값의 참조
console.log(`${me.firstName} ${me.lastName}`); //andy han

//접근자 프로퍼티를 통한 프로퍼티 값의 참조
//접근자 프로퍼티 fullName에 값을 저장하면 setter 함수가 호출된다.
me.fullName="han jaehyeok";
console.log(me) //Person { firstName: 'han', lastName: 'jaehyeok' }

//접근자 프로퍼티를 통한 프로퍼티 값의 참조
//접근자 프로퍼티 fullName에 접근하면 getter 함수가 호출된다.
console.log(me.fullName); //han jaehyeok

//fullName은 접근자 프로퍼티다
//접근자 프로퍼티는 get, set, enumerable, configurable 프로퍼티 어트리뷰트를 갖는다.
console.log(Object.getOwnPropertyDescriptor(Person.prototype, 'fullName'));
/*{
  get: [Function: get fullName],
  set: [Function: set fullName],
  enumerable: false,
  configurable: true
}*/

getter와 setter이름은 인스턴스 프로퍼티처럼 사용된다. 다시 말해 getter는 호출하는 것이 아니라 프로퍼티처럼 참조하는 형식으로 사용하며, 참조 시에 내부적으로 getter가 호출된다. setter도 호출하는 것이 아니라 프로퍼티처럼 값을 할당하는 형식으로 사용하며, 할당 시에 내부적으로 setter가 호출된다.

getter느 이름 그대로 무언가를 취득할 때 사용하므로 반드시 무언가를 반환해야 하고 setter는 무언가를 프로퍼티에 할당해야 할 때 사용하므로 반드시 매개변수가 있어야 한다. ❗️setter는 단 하나의 값만 할당받기 때문에 단 하나의 매개변수만 선언할 수 있다.

❗️클래스의 메서드는 기본적으로 프로토타입 메서드가 된다. 따라서 클래스의 접근자 프로퍼티 또한 인스턴스 프로퍼티가 아닌 프로토타입의 프로퍼티가 된다.

클래스 필드 정의 제한

클래스 필드는 클래스 기반 객체지향 언어에서 클래스가 생성할 인스턴스의 프로퍼티를 가리키는 용어다.

자바스크립트의 클래스에서 인스턴스 프로퍼티를 선언하고 초기화하려면 반드시 constructor 내부에서 this에 프로퍼티를 추가해야 한다. 하지만 자바의 클래스에서는 클래스 필드를 마치 변수처럼 클래스 몸체에 this없이 선언한다.

또한 자바스크립트 클래스에서 인스턴스 프로퍼티를 참조하려면 반드시 this를 사용하여 참조해야 한다. 하지만 자바의 클래스에서는 this를 생략해도 클래스 필드를 참조할 수 있다.

😢자바스크립트의 클래스 몸체에는 메서드만 선언할 수 있다. 따라서 클래스 몸체에 자바와 유사하게 클래스 필드를 선언하면 문법 에러가 발생한다.

class Person{
    name='han';
}

const me = new Person('andy');
console.log(me) //Person { name: 'han' }

🤔하지만 위 코드를 최신 브라우저 또는 최신 Node.js에서 실행하면 문법 에러가 발생하지 않고 정상 동작한다. 그 이유를 살펴보자.

자바스크립트에서도 인스턴스 프로퍼티를 마치 클래스 기반 객체지향 언어의 클래스 필드처럼 정의할 수 있는 새로운 표준 사양인 "Class field declarations"가 2021년 1월 현재. TC39 프로세스의 stage3(candidate)에 제안되어 있다.

클래스 몸체에서 클래스 필드를 정의하는 경우 this에 클래스 필드를 바인딩해서는 안 된다. this는 클래스의 constructor와 메서드 내에서만 유효하다.

class Person{
    this.name=''; //SyntaxError: Unexpected token '.'
}

클래스 필드를 참조하는 경우 자바와 같은 클래스 기반 객체지향 언어에서는 this를 생략할 수 있으나 자바스크립트에서는 this를 반드시 사용해야 한다.

class Person{
    //클래스 필드
    name= 'Han';

    constructor(){
        console.log(name); //ReferenceError: name is not defined
    }
}

new Person();

클래스 필드에 초기값을 할당하지 않으면 undefined를 갖는다.

class Person{
    //클래스 필드를 초기화하지 않으면 undefined를 갖는다.
    name;
}
const me = new Person(); 
console.log(me); //Person { name: undefined }

인스턴스를 생성할 때 외의 초기값으로 클래스 필드를 초기화해야 할 필요가 있다면 constructor에서 클래스 필드를 초기화해야 한다.

class Person{
    name;
    constructor(name){
        this.name=name;
    }
}

const me = new Person('han');
console.log(me); //Person { name: 'han' }

❗️이처럼 인스턴스를 생성할 때 클래스 필드를 초기화할 필요가 있다면 constructor 밖에서 클래스 필드를 정의할 필요가 없다. 클래스 필드를 초기화할 필요가 있다면 어차피 constructor 내부에서 클래스 필드를 참조하여 초기값을 할당해야 한다. 이때 this 즉, 클래스가 생성한 인스턴스에 클래스 필드에 해당하는 프로퍼티가 없다면 자동 추가되기 때문이다.

class Person{
    name;
    constructor(name){
        this.name=name;
    }
}

const me = new Person('han');
console.log(me); //Person { name: 'han' }

함수는 일급 객체이므로 함수를 클래스 필드에 할당할 수 있다. 따라서 클래스 필드를 통해 메서드를 정의할수도 있다.

class Person{
    //클래스 필드에 문자열을 할당
    name='han';

    //클래스 필드에 함수를 할당
    getName= function(){
        return this.name;
    }
    //화살표 함수로 정의할 수도 있다.
    //getName=()=>this.name;
}

const me = new Person();
console.log(me); //Person { name: 'han', getName: [Function: getName] }
console.log(me.getName()); //han

❗️이처럼 클래스 필드에 함수를 할당하는 경우, 이 함수는 프로토타입 메서드가 아닌 인스턴스 메서드가 된다. 모든 클래스 필드는 인스턴스 프로퍼티가 되기 때문이다. 따라서 클래스 필드에 함수를 할당하는 것은 권장 하지 않는다.

클래스 필드 정의 제안으로 인해 인스턴스 프로퍼티를 정의하는 방식은 두 가지가 되었다. 인스턴스를 생성 할때 외부 초기값으로 클래스 필드를 초기화할 필요가 있다면 constructor에서 인스턴스 프로퍼티를 정의하는 기존 방식을 사용하고, 인스턴스를 생성할 때 외부 초기값으로 클래스 필드를 초기화할 필요가 없다면 기존의 constructor 에서 인스턴스 프로퍼티를 정의하는 방식과 클래스 필드 정의 제한 모두 사용할 수 있다.

private 필드 정의 제한

캡슐화와 정보 은닉에서 살펴보았듯이 자바스크립트는 캡슐화를 완전하게 지원하지 않는다. ES6의 클래스도 생성자 함수와 마찬가지로 다른 클래스 기반 객체지향 언어에서는 지원하는 private, public, protected 키워드와 같은 접근 제한자를 지원하지 않는다. 따라서 인스턴스 프로퍼티는 인스턴스를 통해 클래스 외부에서 언제나 참조할 수 있다. ❗️즉, 언제나 public 이다.

class Person{
    constructor(name){
        this.name=name; //인스턴스 프로퍼티는 기본적으로 public이다.
    }
}
const me = new Person('andy');
console.log(me.name); //andy

클래스 필드 정의 제안을 사용하더라도 클래스 필드는 기본적으로 public 이기 때문에 외부에 그대로 노출된다.

class Person{
    name='han';  //클래스 필드도 기본적으로 public 이다.
}
//인스턴스 생성
const me = new Person();
console.log(me.name); //han

❗️다행이도 2021년 1월 TC39 프로세스의 stage3에는 private 필드를 정의할 수 있는 새로운 표준 사양이 제안 되어 있다. private 필드의 선두에는 #을 붙여준다. private 필드를 참조할 때도 #을 붙어주어야 한다.

class Person{
    //private 필드 정의
    #name= '';

    constructor(name){
        this.name=name;
    }
}

const me = new Person('andy');

//private 필드 #name은 클래스 외부에서 참조할 수 없다.
console.log(me.#name); //SyntaxError: Private field '#name' must be declared in an enclosing class

❗️public 필드는 어디서든 참조할 수 있지만 private 필드는 클래스 내부에서만 참조할 수 있다.
이처럼 클래스 외부에서 private 필드에 직접 접근할 수 있는 방법은 없다. 다만 접근자 프로퍼티를 통해 간접적으로 접근하는 방법은 유효하다.

class Person{   
    //private 필드 정의
    #name='';
    
    constructor(name){
        this.#name=name;
    }

    //name은 접근자 프로퍼티다.
    get name(){
        //private 필드를 참조하여 trim한 다음 반환한다.
        return this.#name.trim();
    }
}

const me = new Person('han');
console.log(me.name); //han

❗️private 필드는 반드시 클래스 몸체에 정의해야 한다. private 필드를 직접 constructor에 정의하면 에러가 발생한다.

class Person{
    constructor(name){
        this.#name=name; //SyntaxError: Private field '#name' must be declared in an enclosing class
    }
}

static 필드 정의 제한

"정적 메서드"에서 살펴보았듯이 클래스에는 static 키워드를 사용하여 정적 메서드를 정의 할 수 있다. 하지만 static 키워드를 사용하저 정적 필드를 정의할 수는 없었다. ❗️하지만 static public필드, static private 필드, static private 메서드를 정의할 수 있는 새로운 표준 사양인 "Static class features"가 2021년 1월 현재, TC39 프로세스의 stage3에 제안되어 있다.

class MyMath {
    //static public 필드 정의
    static PI =22/7;

    //static private 필드 정의
    static #num=10;

    //static 메섣,
    static increment(){
        return ++MyMath.#num;
    }
}

console.log(MyMath.PI); //3.142857142857143
console.log(MyMath.increment()); //11

상속에 의한 클래스 확장

클래스 상속과 생성자 함수 상속

상속에 의한 클래스 확장은 지금까지 살펴본 프로토타입 기반 상속과는 다른 개념이다. 프로토타입 기반 상속은 프로토타입 체인을 통해 다른 객체의 자산을 상속받는 개념이지만 ❗️상속에 의한 클래스 확장은 기존 클래스를 상속받아 새로운 클래스를 확장하여 정의하는 것이다.

예를 들어, 동물을 추상화한 Animal 클래스와 새와 사자를 추상화한 Bird, Lion 클래스를 각각 정의한다고 생각해보자. 새와 사자는 동물에 속하므로 동물의 속성을 갖는다. 하지만 새와 사자는 자신만의 고유한 속성도 갖는다. 이때 Animal 클래스는 동물의 속성을 표현하고 Bird, Lion 클래스는 상속을 통해 Animal 클래스의 속성을 그대로 사용하면서 자신만의 고유한 속성만 추가하여 확장할 수 있다.

😎Bird 클래스와 Lion 클래스는 상속을 통해 Animal 클래스의 속성을 그대로 사용하고 자신만의 고유한 속성을 추가하여 확장했다. 이처럼 상속에 의한 클래스 확장은 코드 재사용 관점에서 매우 유용하다

class Animal{
    constructor(age, weight){
        this.age=age;
        this.weight=weight;
    }
    eat(){
        return 'eat';
    }
    move(){
        return 'move';
    }
}

//상속을 통해 Animal 클래스를 확장한 Bird 클래스
class Bird extends Animal{
    fly(){
        return 'fly';
    }
}

const bird = new Bird(1,5);

console.log(bird); //Bird { age: 1, weight: 5 }
console.log(bird instanceof Bird); //true
console.log(bird instanceof Animal); //true

console.log(bird.eat()); //eat
console.log(bird.move()); //move
console.log(bird.fly()); //fly

❗️클래스는 상속을 통해 다른 클래스를 확장할 수 있는 문법인 extends 키워드가 기본적으로 제공된다. extends 키워드를 사용한 클래스 확장은 간편하고 직관적이다. 하지만 생성자 함수는 클래스와 같이 상속을 통해 다른 생성자 함수를 확장할 수 있는 문법이 제공되지 않는다.

extends 키워드

상속을 통해 클래스를 확장하려면 extends 키워드를 사용하여 상속바다을 클래스를 정의한다.

//수퍼(베이스/부모)클래스
class Base{}

//서브(파생/자식)클래스
class Derived extends Base{}

❗️상속을 통해 확장된 클래스를 서브클래스라 부르고, 서브클래스에게 상속된 클래스를 수퍼클래스라 부른다. 서브클래스를 파생 클래스 또는 자식 클래스, 수퍼클래스를 베이스 클래스또는 부모 클래스라고 부르기도 한다.

❗️extends 키워드의 역할은 수퍼클래스와 서브클래스 간의 상속 관계를 설정하는 것이다. 클래스도 프로토타입을 통해 상속 관계를 구현하다.
❗️❗️ 수퍼클래스와 서브클래스는 인스턴스의 프로토타입 체인뿐 아니라 클래스 간의 프로토타입 체인도 생성한다. 이를 통해 프로토타입 메서드, 정적 메서드 모두 상속이 가능하다.

동적 상속

extends 키워드는 클래스 뿐만 아니라 생성자 함수를 상속받아 클래스를 확장할 수고 있다. ❗️단, extends 키워드 앞에는 반드시 클래스가 와야 한다.

//생성자 함수
function Base(a){
    this.a=a;
}

//생성자 함수를 상속받는 서브 클래스
class Derived extends Base{}

const derived= new Derived(1);
console.log(derived);//Derived { a: 1 }

extends 키워드 다음에는 클래스뿐만이 아니라 [[Construct]] 내부 메서드를 갖는 함수 객체로 평가될 수 있는 모든 표현식을 사용할 수 있다. 이를 통해 동적으로 상속받을 대상을 결정할 수 있다.

function Base1(){};

class Base2{}

let condition = true;

//조건에 따라 동적으로 상속 대상을 결정하는 서브클래스
class Derived extends (condition? Base1: Base2){}

const derived = new Derived();
console.log(derived); //Derived {}

console.log(derived instanceof Base1); //true
console.log(derived instanceof Base2); //false

서브클래스의 constructor

constructor에서 살펴보았듯이 클래스에서 constructor를 생략하면 클래스에 다음과 같이 비어 있는 constructor가 암묵적으로 정의된다. 서브클래스에서 constructor를 생략하면 클래스에 다음과 같은 constructor가 암묵적으로 정의된다. args는 new 연산자와 함께 클래스를 호출할 때 전달한 인수의 리스트다.

constructor(...args) {super(...args);  }

❗️super()는 수퍼클래스의 constructor(super-constructor)를 호출하여 인스턴스를 생성한다.
아래의 코드는 수퍼클래스, 서브클래스 모드 constructor를 생략했다.

//수퍼클래스
class Base{}

//서브클래스
class Derived extends Base{}

위코드의 클래스에는 다음과 같이 암묵적으로 constructor가 정의된다.


//수퍼클래스
class Base{
    constructor(){}
}

//서브클래스
class Derived extends Base{
    constructor(...args){
        super(...args);
    }
}

const derived = new Derived();
console.log(derived); //Derived {}

위 예제와 같이 수퍼클래스와 서브클래스 모두 constructor를 생략하면 빈 객체가 생성된다. 프로퍼티를 소유하는 인스턴스를 생성하려면 constructor 내부에서 인스턴스에 프로퍼티를 추가해야 한다.

super키워드

super키워드는 함수처럼 호출할 수도 있고 this와 같이 식별자처럼 참조할 수 있는 특수한 키워드아. super는 다음과 같이 동작한다.
1. super를 호출하면 수퍼클래스의 constructor(super-constructor)를 호출한다.
2. super를 참조하면 수퍼클래스의 메서드를 호출할 수 있다.

super 호출

❗️super를 호출하면 수퍼클래스의 constructor(super-constructor)를 호출한다.
아래 코드같이 수퍼클래스의 constructor 내부에서 추가한 프로퍼티를 그대로 갖는 인스턴스를 생성한다면 서브클래스의 constructor를 생략할 수 있다.❗️이때 new 연산자와 함께 서브클래스를 호출하면서 전달한 인수는 모두 서브클래스에 암묵적으로 정의된 constructor의 super 호출을 통해 수퍼클래스의 constructor에 전달된다.

//수퍼 클래스
class Base{
    constructor(a,b){
        this.a=a;
        this.b=b;
    }
}

//서브 클래스
class Derived extends Base{
    //다음과 같이 암묵적으로 constructor가 정의된다.
    //constructor(...args){super(...args)}
};

const derived = new Derived(1,2);
console.log(derived); //Derived { a: 1, b: 2 }

다음 예제와 같이 수퍼클래스에서 추가한 프로퍼티와 서브클래스에서 추가한 프로퍼티를 갖는 인스턴스를 생성한다면 서브클래스의 constructor를 생략할 수 없다. 이때 new 연산자와 함께 서브클래스를 호출하면서 전달한 인수 중에서 수퍼클래스의 constructor에 전달할 필요가 있는 인수는 서브클래스의 constructor에서 호출하는 super를 통해 전달한다.

//수퍼클래스
class Base{
    constructor(a,b){ //4
        this.a=a; 
        this.b=b;
    }
};

//서브클래스
class Derived extends Base{
    constructor(a,b,c){ //3
        super(a,b); //2
        this.c=c;
    }
};

const derived= new Derived(1,2,3); //1
console.log(derived); //Derived { a: 1, b: 2, c: 3 }

new 연산자와 함께 Derived 클래스를 호출(1) 하면서 전달한 인수 1,2,3은 Derived 클래스의 constructor(2)에 전달되고 super 호출(3)을 통해 Base 클래스의 constructor(4)에 일부가 전달된다.

이처럼 인스턴스 초기화를 위해 전달한 인수는 수퍼클래스와 서브클래스에 배분되고 상속 관계의 두 클래스는 서로 협력하여 인스턴스를 생성한다.

🤔super를 호출할 때 중의할 사항은 다음과 같다.
1. 서브클래스에서 constructor를 생략하지 않는 경우 서브클래스의 constructor에서는 반드시 super를 호출해야 한다.

class Base{};

class Derived extends Base{
    constructor(){
        console.log('hi');
    }
}
const derived = new Derived(); //ReferenceError: Must call super constructor in derived class before accessing 'this' or returning from derived constructor
  1. 서브클래스의 constructor에서 super를 호출하기 전에는 this를 참조할 수 없다.
class Base{
    
};

class Derived extends Base{
    constructor(){
       this.a=1; 
       super();
    }
}
const derived = new Derived(); //ReferenceError: Must call super constructor in derived class before accessing 'this' or returning from derived constructor
console.log(derived.a);
  1. super는 반드시 서브클래스의 constructor에서만 호출한다. 서브클래스가 아닌 클래스의 constructor나 함수에서 super를 호출하면 에러가 발생한다.
class Base{
    constructor(){
        super(); //SyntaxError: 'super' keyword unexpected here
    }
}

function func(){
    super(); //SyntaxError: 'super' keyword unexpected here
};

super참조

메서드 내에서 super를 참조하면 수퍼클래스의 메서드를 호출할 수 있다.

01.) 서브클래스의 프로토타입 메서드 내에서 super.sayHi는 수퍼클래스의 프로토타입 메서드 sayHi를 가리킨다.

//수퍼 클래스
class Base{
    constructor(name){
        this.name=name;
    }
    sayHi(){
        return `hi ${this.name}`;
    }    
}

//서브 클래스
class Derived extends Base{
    sayHi(){
        //super.sayHi는 수퍼클래스의 프로토타입 메서드를 가리킨다.
        return `${super.sayHi()}. how are you doing?`
    }
}

const derived = new Derived('andy');
console.log(derived.sayHi()); //hi andy. how are you doing?

super 참조를 통해 수퍼클래스의 메서드를 참조하려면 super가 수퍼클래스의 메서드가 바인딩된 객체, 즉 수퍼클래스의 prototype 프로퍼티에 바인딩된 프로토타입을 참조할 수 있어야 한다. 위 예제는 다음 예제와 동일하게 동작한다.

//수퍼 클래스
class Base{
    constructor(name){
        this.name=name;
    }
    sayHi(){
        return `hi ${this.name}`;
    }
}

class Derived extends Base{
    sayHi(){
        //super는 Base.prototype을 가리킨다.
        const __super = Object.getPrototypeOf(Derived.prototype);
        return `${__super.sayHi.call(this)} how are you doing?`
    }
}
const me = new Derived('andy');
console.log(me.sayHi()); //hi andy how are you doing?

super는 자신을 참조하고 있는 메서드(위 예제의 경우 Derived의 sayHi)가 바인딩되어 있는 객체 (위 예제의 경우 Derived.prototype)의 프로토타입(위 예제의 경우 Base.prototype)을 가리킨다. 따라서 super.sayHi는 Base.prototype.sayHi를 가리킨다. 단, super.sayHi, 즉 Base.prototype.sayHi를 호출할때 call 메서드를 사용해 this를 전달해야 한다.

❗️call 메서드를 사용해 this를 전달하지 않고 Base.prototype.sayHi 그래도 호출하면 Base.prototype.sayHi 메서드 내부의 this는 Base.prototype을 가리킨다. Base.prototype.sayHi 메서드는 프로토타입 메서드이기 때문에 내부의 this는 Base.prototype이 아닌 인스턴스를 가리켜야 한다. name 프로퍼티는 인스턴스에 존재하기 때문이다.

❗️❗️이처럼 super참조가 동작하기 위해서는 super를 참조하고 있는 메서드(위 예제의 경우 Derived의 sayHi)가 바인딩되어 있는 개체(위 예제의 경우 Derived.prototype)의 프로토타입(위 예제의 경우 Base.prototype)을 찾을 수 있어야 한다. 이를 위해 메서드는 내부 슬롯[[HomeObject]]를 가지며, 자신을 바인딩하고 있는 객체를 가지킨다.

super 참조를 의사 코드로 표현하면 다음과 같다

/*[[HomeObject]]는 메서드 자신을 바인딩하고 있는 객체를 가리킨다.
[[HomeObject]]를 통해 메서드 자신을 바인딩하고 있는 객체의 프로토타입을 찾을 수 있다.
예를 들어 Derived 클래스의 sayHi 메서드는 Derived.prototype에 바인딩되어 있다.
따라서 Derived 클래스의 sayHi 메서드의 [[HomeObject]]는 Derived.prototype이고
이를 통해 Derived 클래스의 sayHi 메서드 내부의 super 참조가 Base.prototype으로 결정된다.
따라서 super.sayHi는 Base.prototype.sayHi를 가리키게 된다.
*/
super=Object.getPrototypeOf([[HomeObject]])

❗️주의할 것은 ES6의 메서드 축약 표현으로 정의된 함수만이 [[HomeObject]]를 갖는다는 것이다.

const obj={
    //foo는 ES6의 메서드 축약 표현으로 정의한 메서드다. 따라서 [[HomeObject]]를 갖는다.
    foo(){

    },
    //bar는 ES6의 메서드 축약 표현으로 정의한 메서드가 아니라 일반 함수다.
    //따라서 [[HomeObject]]를 갖지 않는다.
    bar: function(){
        
    }
}

[[HomeObject]]를 가지는 함수만이 super참조를 할 수 있다. 따라서 [[HomeObject]]를 가지는 ES6의 메서드 축약 표현으로 정의된 함수만이 super참조를 할 수 있다. ❗️단 super참조는 수퍼클래스의 메서드를 참조하기 위해 사용하므로 서브클래스의 메서드에서 사용해야 한다.

super참조는 클래스의 전유물은 아니다. 객체 리터럴에서도 super참조를 사용할 수 있다. 단 ES6의 메서드 축약 표현으로 정의된 함수만 가능하다.

const base={
    name: 'andy',
    sayHi(){
        return `hi ${this.name}`;
    },
}

const derived={
    __proto__: base,
    sayHi(){
        return `${super.sayHi()}. how are you doing?`;
    }
}
console.log(derived.sayHi()); //hi andy. how are you doing?

서브클래스의 정적 메서드 내에서 super.sayHi는 수퍼클래스의 정적 메서드 sayHi를 가리킨다.

//수퍼 클래스
class Base{
    static sayHi(){
        return 'Hi'
    }
}

//서브 클래스
class Derived extends Base{
    static sayHi(){
        return `${super.sayHi()}. how are you doing?`
    }
}

console.log(Derived.sayHi()) //Hi. how are you doing?

상속 클래스의 인스턴스 생성 과정

상속 관계가 있는 두 클래스가 어떻게 협력하며 인스턴스를 생성하는지 살펴보도록 하자. 이를 통해 super를 더욱 명확하게 이해할 수 있을 것이다.
직사각형을 추상화한 Rectangle 클래스와 상속을 통해 Rectangle 클래스를 확장한 ColorRectangle 클래스를 정의해보자.

class Rectangle{
    constructor(width, height){
        this.width=width;
        this.height=height;
    }
    getArea(){
        return this.width*this.height;
    }
    toString(){
        return `width=${this.width}, height= ${this.height}`;
    }
}

//서브클래스
class ColorRectangle extends Rectangle{
    constructor(width, height, color){
        super(width, height);
        this.color=color;
    }
    
    //메서드 오버라이딩
    toString(){
        return super.toString()+`,color =${this.color}`;
    }
}

const colorRectangle = new ColorRectangle(2,4,'red');
console.log(colorRectangle); //ColorRectangle { width: 2, height: 4, color: 'red' }

//상속을 통해 getArea 메서드를 호출
console.log(colorRectangle.getArea()); //8
//오버라이딩된 toString 메서드를 호출
console.log(colorRectangle.toString()); //width=2, height= 4,color =red

1. 서브클래스의 super 호출

자바스크립트 엔진은 클래스를 평가할 때 수퍼클래스와 서브클래스를 구분하기 위해 "base" 또는 "derived"를 값으로 갖는 내부 슬롯 [[ConstructorKind]]를 갖는다. 다른 클래스를 상속받지 않는 클래스(그리고 생성자 함수)는 내부 슬롯 [[ConstructoKind]]의 값의 "base"로 설정되지만 다른 클래스를 상속받는 서브클래스는 내부 슬롯 [[ConstructorKind]]의 값이 "derived"로 설정된다. 이를 통해 수퍼클래스와 서브클래스는 new연산자와 함께 호출되었을 때의 동작이 구분된다.

다른 클래스를 상속받지 않는 클래스(그리거 생성자 함수)는 "클래스의 인스턴스 생성 과정" 에서 살펴보았듯이 new 연산자와 함께 호출되었을 때 암묵적으로 빈 객체, 즉 인스턴스를 생성하고 이를 this에 바인딩한다.

❗️❗️하지만 서브클래스는 자신이 직접 인스턴스를 생성하지 않고 수퍼클래스에게 인스턴스 생성을 위임한다. 이것이 바로 서브클래스의 constructor에서 반드시 super를 호출해야 하는 이유다.

서브클래스가 new연산자와 함께 호출되면 서브클래스 constructor 내부의 super 키워드가 함수처럼 호출된다. super가 호출되면 수퍼클래스의 constructor(super-constructor)가 호출된다. 좀 더 정확히 말하자면 수퍼클래스가 평가되어 생성된 함수 객체의 코드가 실행되기 시작한다.

만약 서브클래스 constructor 내부에 super 호출이 없으면 에러가 발생한다. 실제로 인스턴스를 생성하는 주체는 수퍼클래스이므로 수퍼클래스의 constructor를 호출하는 super가 호출되지 않으면 인스턴스를 생성 할 수 없기 때문이다.

2. 수퍼클래스의 인스턴스 생성과 this바인딩

수퍼클래스의 constructor 내부의 코드가 실행되기 이전에 암묵적으로 빈 객체를 생성한다. 이 빈 객체가 바로(아직 완성되지는 않았지만) 클래스가 생성한 인스턴슫. 그리거 암묵적으로 생성된 빈 객체, 즉 인스턴스는 this에 바인딩된다. 따라서 수퍼클래스의 constructor 내부의 this는 생성된 인스턴스를 가리킨다.

//수퍼클래스
class Rectangle{
    constructor(width, height){
        //암묵적으로 빈 객체, 즉 인스턴스가 생성되고 this에 바인딩된다.
        console.log(this); //ColorRectangle {}
        //new 연산자와 함께 호출된 함수, 즉 new.target은 ColorRectangle이다.
        console.log(new.target);
      
//생성된 인스턴스의 프로토타입으로 ColorRectangle.prototype이 설정된다.
console.log(Object.getPrototypeOf(this)===ColorRectangle.prototype); //true
console.log(this instanceof ColorRectangle); //true
console.log(this instanceof Rectangle); //true
...

❗️이때 인스턴스는 수퍼클래스가 생성한 것이다. 하지만 new 연산자와 함꼐 호출된 클래스가 서브클래스라는 것이 중요하다. 즉, new 연산자와 함께 호출된 함수를 가리키는 new.target은 서브클래스를 가리킨다. 따라서 인스턴스는 new.target이 가리키는 서브클래스가 생성한 것으로 처리된다.

따라서 생성된 인스턴스의 프로토타입은 수퍼클래스의 prototype 프로퍼티가 가리키는 객체(Rectangle.prototype)가 아니라 new.target, 즉 서브클래스의 prototype프로퍼티가가 가리키는 객체(ColorRectangle.prototype)다.

3. 수퍼클래스의 인스턴스 초기화

수퍼클래스의 constructor가 실행되어 this에 바인딩되어 있는 인스턴스를 초기화한다. 즉 this에 바인딩되어 있는 인스턴스에 프로퍼티를 추가하고 constructor 인수로 전달받은 초기값으로 인스턴스의 프로퍼티를 초기화한다.

//수퍼클래스
class Rectangle{
    constructor(width, height){
        //암묵적으로 빈 객체, 즉 인스턴스가 생성되고 this에 바인딩된다.
        console.log(this); //ColorRectangle {}
        //new 연산자와 함께 호출된 함수, 즉 new.target은 ColorRectangle이다.
        console.log(new.target);
      
//생성된 인스턴스의 프로토타입으로 ColorRectangle.prototype이 설정된다.
console.log(Object.getPrototypeOf(this)===ColorRectangle.prototype); //true
console.log(this instanceof ColorRectangle); //true
console.log(this instanceof Rectangle); //true
      
    //인스턴스 초기화
        this.width=width;
        this.height=height;

        console.log(this); //ColorRectangle {width: 2, height: 4}
...

4. 서브클래스 constructor로의 복귀와 this 바인딩

super호출이 종료되고 제어 흐름이 서브클래스 constructor로 돌아온다.❗️이때 super가 반환한 인스턴스가 this에 바인딩된다. 서브클래스는 별도의 인스턴스를 생성하지 않고 super가 반환한 인스턴스를 this에 바인딩하여 그대로 사용한다.

//서브 클래스
class ColorRectangle extends Rectangle{
    constructor(width, height, color){
        super(width, height);

        //super 가 반환한 인스턴스가 this에 바인딩된다.
        console.log(this); //ColorRectangle {width:2 , height: 4}
    }
}

❗️이처럼 super가 호출되지 않으면 인스턴스가 생성되지 않으며, this바인딩도 할 수 없다. 서브클래스의 constructor에서 super를 호출하기 전에는 this를 참조할 수 없는 이유가 바로 이 때문이다. 따라서 서브클래스 constructor 내부의 인스턴스 초기화는 반드시 super 호출 이우에 처리되어야 한다.

5. 서브클래스의 인스턴스 초기화

super 호출 이후, 서브클래스의 constructor에 기술되어 있는 인스턴스 초기화가 실행된다. 즉 this에 바인딩되어 있는 인스턴스에 프로퍼티를 추가하고 constructor가 인수로 전달받은 초기값으로 인스턴스의 프로퍼티를 초기화한다.

6. 인스턴스 반환

클래스의 모든 처리가 끝나면 완성된 인스턴스가 바인딩된 this가 암묵적으로 반환된다.

//서브 클래스
class ColorRectangle extends Rectangle{
    constructor(width, height, color){
        super(width, height);

        //super 가 반환한 인스턴스가 this에 바인딩된다.
        console.log(this); //ColorRectangle {width:2 , height: 4}

        //인스턴스 초기화
        this.color=color;
        
        //완성된 인스턴스가 바인딩된 this가 암묵적으로 반환된다.
        console.log(this); //ColorRectangle {width:2 , height: 4, color: "red"}
    }
}

표준 빌트인 생성자 함수 확장

"동적 상속"에서 살펴보았듯이 extends 키워드 다음에는 클래스 뿐만이 아니라 [[Construct]] 내부 메서드를 갖는 함수 객체로 평가될 수 있는 모든 표현식을 사용할 수 있다. String, Number,Array 같은 표준 빌트인 객체도 [[Construct]] 내부 메서드를 갖는 생성자 함수이므로 extends 키워드를 사용하여 확장 할 수 있다.

profile
열정으로 가득 찬 개발자 꿈나무 입니다

0개의 댓글