17 생성자 함수에 의한 객체 생성
Object 생성자 함수
- new 연산자와 함께 Object 생성자 함수 호출
- Object 생성자 함수 이외도 String, Number, Boolean, Function, Array, Date, RegExp, Promise 등의 빌트인(built-in) 생성자 함수 제공
- 객체를 생성하는 방법은 객체 리터럴을 사용하는 것이 더 간편함
💡 생성자 함수(constructor) : new 연산자와 함께 호출하여 객체(인스턴스)를 생성하는 함수
-> 인스턴스(instance) : 생성자 함수에 의해 생성된 객체
const person = new Object();
person.name = 'Lee';
person.sayHello = function () {
console.log('Hi! My name is ' + this.name);
};
console.log(person); // {name: 'Lee', sayHello: f}
person.sayHello(); // Hi! My name is Lee
생성자 함수
객체 리터럴에 의한 객체 생성 방식의 문제점
- 객체 리터럴에 의한 객체 생성 방식은 단 하나의 객체만 생성하기 때문에 동일한 프로퍼티를 갖는 객체를 여러 개 생성해야 하는 경우 매번 같은 프로퍼티를 기술해야 하기 때문에 비효율적
const circle1 = {
radius: 5,
getDiameter() {
return 2 * this.radius;
}
};
console.log(circle1.getDiameter()); // 10
const circle2 = {
radius: 10,
getDiameter() {
return 2 * this.radius;
}
}
console.log(circle2.getDiameter()); // 20
생성자 함수에 의한 객체 생성 방식의 장점
- 생성자 함수를 사용하여 프로퍼티 구조가 동일한 객체 여러 개를 간편하게 생성
- new 연산자와 함께 호출하면 해당 함수는 생성자 함수로 동작
// 생성자 함수
function Circle(radius) {
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
}
}
// 인스턴스의 생성
const circle1 = new Circle(5); // Circle 객체 생성
const circle2 = new Circle(10); // Circle 객체 생성
console.log(circle1.getDiameter()); // 10
console.log(circle1.getDiameter()); // 20
💡 this
- 객체 자신의 프로퍼티나 메서드를 참조하기 위한 자기 참조 변수(self-referencing variable)
- this가 가리키는 값, this 바인딩은 함수 호출 방식에 따라 동적 결정
함수 호출 방식 this가 가리키는 값(this 바인딩) 일반 함수로서 호출 전역 객체 메서드로서 호출 메서드를 호출한 객체(마침표 앞 객체) 생성자 함수로서 호출 생성자 함수가 (미래에) 생성할 인스턴스 function foo() { console.log(this); } // 일반적인 함수로 호출 foo(); // window const obj = { foo }; // ES6 프로퍼티 축약 표현 // 메서드로 호출 obj.foo(); // obj // 생성자 함수로서 호출 const inst = new foo(); // inst
생성자 함수의 인스턴스 생성 과정
- 인스턴스 생성과 this 바인딩
💡 바인딩 (name binding)
식별자와 값을 연결하는 과정을 의미 (ex. 변수 선언은 변수 이름(식별자)과 확보된 메모리 공간의 주소를 바인딩)
function Circle(radius) {
// 암묵적으로 인스턴스가 생성 this 바인딩
console.log(this); // Circle {}
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
}
}
- 인스턴스 초기화
- this에 바인딩되어 있는 인스턴스를 초기화
function Circle(radius) {
// 1. 암묵적으로 인스턴스가 생성 this 바인딩
// 2. this에 바인딩되어 있는 인스턴스를 초기화
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
}
}
- 인스턴스 반환
- 생성자 함수 내부의 모든 처리가 끝나면 완성된 인스턴스가 바인딩된 this가 암묵적으로 반환
function Circle(radius) {
// 1. 암묵적으로 인스턴스가 생성 this 바인딩
// 2. this에 바인딩되어 있는 인스턴스를 초기화
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
}
// 3. 완성된 인스턴스가 바인딩된 this가 암묵적 반환
// 명시적으로 원시 값을 반환하면 원시 값 반환은 무시, 암묵적 this 반환
return 100;
}
// 인스턴스 생성. Circle 생성자 함수는 암묵적으로 this 반환
const circle = new Circle(1);
console.log(circle); // Circle {radius: 1, getDiameter: f}
내부 메서드 [[Call]]과 [[Construct]]
- 함수는 객체이므로 일반 객체(ordinary object)와 동일하게 동작
function foo() {}
// 일반적인 함수로 호출 : [[Call]]이 호출, 모든 함수 객체는 [[Call]]이 구현
foo();
// 생성자 함수로서 호출 : [[Construct]] 호출
new foo();
- callable: 내부 메서드[[Call]]을 갖는 함수 객체
- constructor : 내부 메서드 [[Construct]]를 갖는 함수 객체
- non-constructor : 내부 메서드 [[Construct]]가 없는 객체
constructor와 non-constructor의 구분
- 함수 정의 방식에 따라 구분
- constructor : 함수 선언문, 함수 표현식, 클래스
- non-constructor : 메서드(ES6 메서드 축약 표현), 화살표 함수
// 일반 함수 정의: 함수 선언문, 함수 표현식
function foo() {}
const bar = function () {};
// 프로퍼티 x의 값으로 할당된 것은 일반 함수로 정의, 메서드로 인정 x
const baz = {
x: function () {}
};
// 일반 함수로 정의된 함수만이 constructor
new foo(); // -> foo {}
new bar(); // -> bar {}
new bar.x(); // -> x {}
// 화살표 함수 정의
const arrow = () => {};
new arrow(); // TypeError : arrow is not a constructor
// 메서드 정의 : ES6의 메서드 축약 표현만 메서드 인정
const obj = {
x() {}
};
new obj.x(); // TypeError : obj.x is not a constructor
new 연산자
- new 연산자와 함께 함수를 호출하면 해당 함수는 생성자 함수로 동작
- 함수 객체의 내부 메서드 [[Call]]이 호출되는 것이 아닌 [[Construct]] 호출
- non-constructor가 아닌 constructor
- 생성자 함수는 일반적으로 첫 문자를 대문자로 기술하는 파스칼 케이스로 명명
// ex1)
// 생성자 함수로서 정의하지 않은 일반 함수
function add(x, y) {
return x + y;
}
// 일반 함수를 new 연산자와 호출
let inst = new add();
// 함수가 객체를 반환하지 않음 반환문 무시
console.log(inst); // {}
// 객체를 반환하는 일반 함수
function createUser(name, role) {
return { name, role};
}
inst = new createUser('Lee', 'admin');
// 함수가 생성한 객체 반환
console.log(inst); // {name: "Lee", role: "admin"}
// ex2)
// 생성자 함수
function Circle(radius) {
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
};
}
// new 연산자 없이 생성자 함수 호출 -> 일반 함수 호출
const circle = Circle(5);
console.log(circle); // undefined
// 일반 함수의 내부의 this는 전역 객체 window를 가르침
console.log(radius); // 5
console.log(getDiameter()); // 10
circle.getDiameter(); // TypeError: Cannot read property 'getDiameter' of undifined
new.target
- new.target은 this와 유사하게 constructor인 모든 함수 내부에서 암묵적으로 지역 변수와 같이 사용되며 프로퍼티라 부름
- new 연산자와 함께 생성자 함수로서 호출되면 함수 내부의 new.target은 함수 자신을 가르킴
- new 연산자 없이 일반 함수로서 호출된 함수 내부의 new.target은 undifined
function Circle(radius){
// 이 함수가 new 연산자와 함께 호출되지 않았다면 new.target은 undifined
if (!new.target) {
return new Circle(radius);
}
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
};
}
// new 연산자 없이 생성자 함수를 호출 하여도 new.target을 통해 생성자 함수로 호출
const circle = Circle(5);
console.log(circle.getDiameter());
💡 스코프 세이프 생성자 패턴 (scope-safe constructor)
// Scope-Safe Constructor Pattern function Circle(radius) { // 생성자 함수가 new 연산자와 함께 호출되면 함수의 선두에 빈 객체 생성 // this에 바인딩 this와 Circle은 프로토타입에 의해 연결 // 이 함수가 new 연산자와 호출되지 않았다면 this는 전역 객체 window를 가르킴 // 즉 this와 Circle은 연결되지 않음 if (!(this instanceof Circle)) { // new 연산자와 함께 호출 인스턴스 반환 return new Circle(radius); } this.radius = radius; this.getDiameter = function () { return 2 * this.radius; }; } // new 연산자 없이 생성자 함수를 호출해도 생성자 함수로 호출 const circle = Circle(5); console.log(circle.getDiameter()); // 10
- 빌트인 생성자 함수(Object, String, Number, Boolean, Function, Array, Date, RegExp, Promise 등)
- new 연산자와 함께 호출되었는지를 확인한 후 적절한 값을 반환
let obj = new Object();
console.log(obj); // {}
obj = Object();
console.log(obj); // {}
let f = new Function('x', 'return x ** x');
console.log(f); // f anonymous(x) { return x ** x }
f= function('x', 'return x ** x');
console.log(f); // f anonymous(x) { return x ** x }
- 생성자 함수(String, Number, Boolean)
- new 연산자와 호출 : 객체를 생성하여 반환
- new 연산자 없이 호출 : 문자열, 숫자, 불리언 값을 반환
const str = String(123);
console.log(str, typeof str); // 123 String
const num = Number('123');
console.log(num , typeof num); // 123 number
const bool = Boolean('true');
console.log(bool, typeof bool); // true boolean
📖 참고도서 : 모던 자바스크립트 Deep Dive 자바스크립트의 기본 개념과 동작 원리 / 이웅모 저 | 위키북스
Author And Source
이 문제에 관하여(17 생성자 함수에 의한 객체 생성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dev_jazziron/17저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)