본문 바로가기

CS/모던 자바스크립트 Deep Dive

25장 클래스(2)

반응형

2023년 4월 25일 435p~448p

 

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

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

  • new 연산자와 함께 클래스를 호출하면 암묵적으로 빈 객체(인스턴스)가 생성된다.
  • 빈 객체는 this에 바인딩된다.

2.인스턴스 초기화

  • constructor 내부의 코드가 실행되며 this에 인스턴스 프로퍼티를 추가한다.
  • 이로써 빈 객체 즉, 인스턴스에 프로퍼티가 추가되어 인스턴스를 초기화된다.

3.인스턴스 반환

  • 클래스의 모든 처리가 끝나면 완성된 인스턴스가 바인딩된 this가 암묵적으로 반환된다.
  • 인스턴스 프로퍼티는 언제나 public하다.
class Person {
  // 생성자
  constructor(name) {
    // 1. 암묵적으로 인스턴스가 생성되고 this에 바인딩된다.
    console.log(this); // Person {}
    console.log(Object.getPrototypeOf(this) === Person.prototype); // true

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

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

25.7.2 접근자 프로퍼티

constructor 내부의 this는 앞서 봤듯이 클래스가 생성한 빈 객체(인스턴스)가 바인딩 되어있다.

따라서 this.name = name; 코드가 실행되면 this에 인스턴스 프로퍼티를 추가하고 초기화한다.

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

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

접근자 프로퍼티는 자체적으로는 값([[Value]]내부슬롯)을 갖지 않고 다른 데이터 프로퍼티의 값을 읽거나 저장할 때 사용하는 접근자 함수(아래 예제에서 fullName 프로퍼티)로 구성된 프로퍼티다.

  • 접근자 프로퍼티는 클래스에서도 사용할 수 있다.
  • 접근자 프로퍼티는 자체적으로는 값을 갖지 않고 읽거나 저장할 때 사용하는 접근자 함수(getter, setter)로 구성되어 있다.
  • getter는 메서드 이름 앞에 get키워드를 사용해 정의한다.
  • setter는 메서드 이름 앞에 set키워드를 사용해 정의한다.
  • getter와 setter 이름은 인스턴스 프로퍼티처럼 사용된다.(ex me.fullName = 'Heegun Lee';, console.log(me.fullName);)
  • getter는 무언가를 취득할 때 사용하므로 반드시 return이 있어야 한다.
  • setter는 무언가를 프로퍼티에 할당할 때 사용하므로 반드시 파라미터가 있어야 한다.
  • 접근자 프로퍼티는 인스턴스의 프로로타입이 아니라 프로토타입의 프로퍼티가 된다.
class Person {
  constructor(firstName, lastName) {
    this.firstName = firstName;
    this.lastName = lastName;
  }

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

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

const me = new Person('Ungmo', 'Lee');

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

// 접근자 프로퍼티를 통한 프로퍼티 값의 저장
// 접근자 프로퍼티 fullName에 값을 저장하면 setter 함수가 호출된다.
me.fullName = 'Heegun Lee';
// fullName()은 없음 -> 프로토타입 메서드이기 때문
console.log(me); // {firstName: "Heegun", lastName: "Lee"}

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

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

25.7.3 클래스 필드 정의 제안

자바스크립트의 클래스 몸체에는 메서드만 선언할 수 있다. 클래스 몸체에 클래스 필드를 선언하면 문법 에러(SyntaxError)가 발생한다.

하지만 최신브라우저(Chrome72이상) 또는 Node.js(버전 12이상)에서는 클래스 몸체에 클래스 필드를 선언해도 정상 동작한다.
자바스크립트에서도 인스턴스 프로퍼티를 마치 클래스 기반 객체지향 언어의 클래스 필드처럼 정의할 수 있는 새로운 표준 사양인 “Class field declarations“가 TC39프로세스의 stage 3(candidate)에 제안되어 있기 때문이다.

 TC39프로세스
ECMA-262 사양에 새로운 표준 사양을 추가하기 위해 공식적으로 명문화해 놓은 과정이다.
0단계 부터 4단계까지 총 5단계로 구성되어 있다.
stage 0:starwman -> stage 1: proposal -> stage 2: draft -> stage 3: candidate -> stage 4: finished
stage 3(candidate) 까지 승급한 제안은 심각한 문제가 없는 한 변경되지 않고 대부분 stage 4로 승급되고,
stage 4(finished)까지 승급한 제안은 큰 이변이 없는 이상 차기 ECMAScript 버전에 포함된다.

class Person {
  // 클래스 필드 정의
  name = 'Lee';
}

const me = new Person();
console.log(me); // Person {name: "Lee"}
  • 최신 브라우저(chrome 72이상), Node.js(버전 12이상)에서만 사용가능하다.
  • 클래스 필드를 정의하는 경우 this에 클래스 필드를 바인딩해서는 안된다.
class Person {
  // this에 클래스 필드를 바인딩해서는 안된다.
  this.name = ''; // SyntaxError: Unexpected token '.'
}
  • 참조하는 경우 this를 반드시 사용해야 한다.
class Person {
  // 클래스 필드
  name = 'Lee';

  constructor() {
    // 참조할때는 this를 반드시 사용해야 한다.
    console.log(name); // ReferenceError: name is not defined
  }
}

new Person();
  • 초기값을 할당하지 않으면 undefined를 갖는다.
  • 외부의 초기값을 사용한 클래스 필드의 초기화는 constructor에서 이루어져야 한다.
class Person {
  name;

  constructor(name) {
    // 초기화할 때는 constructor에서 해야한다.
    // 클래스 필드 초기화.
    this.name = name;
  }
}

const me = new Person('Lee');
console.log(me); // Person {name: "Lee"}
  • 함수는 일급 객체이므로 함수를 클래스 필드에 할당할 수 있다. 즉 클래스 필드를 통해 메서드를 정의할 수도 있다. 이 경우 프로토타입 메서드가 아닌 인스턴스 메서드가 된다(권장하지 않는다).
class Person {
  // 클래스 필드에 문자열을 할당
  name = 'Lee';

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

const me = new Person();
console.log(me); // Person {name: "Lee", getName: ƒ}
console.log(me.getName()); // Lee

클래스 필드를 생성할 때 외부의 초기값으로 필드를 초기화해야 한다면, 어차피 생성자 내에서 클래스 필드를 참조해서 할당해야 하므로 별도로 클래스 필드를 선언할 필요가 없다. 그러므로 이제 인스턴스 프로퍼티를 생성할 때 2가지 방법이 있다고 생각하면 된다.

  • 외부에서 값을 받아 초기화해야 될 때 -> 생성자 내에서 정의
  • 외부에서 값을 받아 초기화할 필요가 없을 때 -> 생성자 내에서 정의 또는 클래스 필드로 정의

* 클래스 필드와 화살표 함수

class App {
  constructor() {
    this.$button = document.querySelector('.btn');
    this.count = 0; 
 
    this.$button.onclick = this.increaseMethod.bind(this);
    this.$button.onclick = this.increaseArrowFunc;
  }
 
  increaseMethod() {
    // 원래 이벤트 핸들러 내부의 this는 이벤트가 바인딩된 DOM 요소를 가리킨다.
    // 여기서 this가 생성될 인스턴스를 가리키게 하려면 위에서 바인딩을 해줘야 한다. 
    this.$button.textContext = ++this.count;
  }
 
  // 화살표 함수는 자신의 this가 없고 상위 스코프의 this를 참조하므로,
  // 화살표 함수 내부의 this는 생성될 인스턴스를 가리킨다. 
  increaseArrowFunc = () => this.$button.textContext = ++this.count;
}

원래 이벤트 핸들러 내부의 this는 이벤트가 바인딩된 DOM 요소(currentTarget)를 가리킨다. (정확히 말하자면 addEventHandler와 이벤트 핸들러 프로퍼티 방식이 그렇다. 이벤트 핸들러 어트리뷰트 방식은 다르다.)

그러므로 increaseMethod 내부의 this는 사실 this.$button 을 가리키므로, this.$button 코드는 실제로는 this.$button.$button을 가리키게 되어 에러가 난다. 이런 문제를 방지하기 위해 이벤트 핸들러를 바인딩할 때에 bind 함수를 사용해서 적절한 객체를 넣어줘야 한다. bind 함수는 첫번째 아규먼트로 전달된 값으로 this 바인딩이 교체된 새로운 함수를 생성하고 반환한므로, 여기서는increaseMethod 의 this가 인스턴스 객체를 가리키기 원하고 위 코드에서 생성될 인스턴스 객체를 가리키는 게 this이므로 this를 아규먼트로 넘겨주면 된다.

반면 화살표 함수로 정의한 경우 상위 스코프의 this를 따르므로 따로 this 바인딩을 해주지 않아도 된다.

https://bbeeyaks-moment.tistory.com/entry/22%EC%9E%A5-this

 

22장 this

2023년 4월 11일 342p~358p 22장 this 22.1 this 키워드 동작을 나타내는 메서드는 자신이 속한 객체의 프로퍼티를 참조하고 변경할 수 있어야 한다. 메서드가 자신이 속한 객체의 프로퍼티를 참조하려면

bbeeyaks-moment.tistory.com

https://developer-alle.tistory.com/373

 

[JavaScript] 자바스크립트 클래스 필드와 이벤트 핸들러

자바스크립트 클래스 필드 원래 자바스크립트의 클래스에서 인스턴스 프로퍼티는 constructor 내부에, 프로토타입 메서드 또는 정적 메서드는 클래스 몸체에 선언해야 한다. class Person { constructor(na

developer-alle.tistory.com

25.7.4 private 필드 정의 제안

private필드도 TC39 프로세스의 stage 3(candidate)로 제안되어있다.(class-private-fields)
최신브라우저(chrome 74이상)와 Node.js(버전 12이상)에 이미 구현되어있다.

  • private필드는 이름 앞에 #을 붙여준다. 참조할 때도 #을 붙여주어야 한다.
class Person {
  // private 필드 정의
  #name = '';

  constructor(name) {
    // private 필드 참조
    this.#name = name;
  }
}

const me = new Person('Lee');

// private 필드 #name은 클래스 외부에서 참조할 수 없다.
console.log(me.#name);
// SyntaxError: Private field '#name' must be declared in an enclosing class
  • private 필드에 직접 접근할 수 있는 방법은 없다. 다만 접근자 프로퍼티를 통해 간접적으로 접근하는 것은 가능하다.
class Person {
  // private 필드 정의
  #name = '';

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

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

const me = new Person(' Lee ');
console.log(me.name); // Lee
  • private 필드는 반드시 클래스 몸체에 정의해야 한다. constructor에 정의하면 에러가 발생한다.
class Person {
  constructor(name) {
    // private 필드는 클래스 몸체에서 정의해야 한다.
    this.#name = name;
    // SyntaxError: Private field '#name' must be declared in an enclosing class
  }
}

25.7.5 static 필드 정의 제안

static 키워드를 사용하여 static public field, static private field, static private 메서드를 정의할 수 있는 새로운 표준 사양인 “Static class features”가 TC39 프로세스의 stage 3(candidate)에 제안되어 있다.(static-class-features)
최신 브라우저(chrome 72이상)와 Node.js(버전 12 이상)에 이미 구현되어 있다.

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

 

반응형

'CS > 모던 자바스크립트 Deep Dive' 카테고리의 다른 글

26장 ES6 함수의 추가 기능  (0) 2023.04.27
25장 클래스(3)  (0) 2023.04.26
25장 클래스(1)  (0) 2023.04.24
24장 클로저(2)  (0) 2023.04.21
24장 클로저(1)  (0) 2023.04.20