22장 this

이로그·2024년 1월 14일
0

22장 this

22.1 this 키워드

  • this는 자신이 속한 객체 또는 자신이 생선한 인스턴스를 가리키는 자기 참조 변수다.
  • this를 통해 자신이 속한 객체 또는 자신이 생성할 인스턴스의 프로퍼티나 메서드를 참조할 수 있다.
  • 함수를 호출하면 arguments 객체와 this가 암묵적으로 전달되고, this도 지역변수처럼 사용할 수 있다.
  • 객체 리터럴의 메서드 내부에서의 this는 메서드를 호출한 객체, 즉 circle을 가리킨다.
const circle = {
    radius: 5,
    getDiameter() {
        return this.radius * 2;
    }
};

console.log(circle.getDiameter()); / 10
  • 생성자 함수 내부의 this는 생성자 함수가 생성할 인스턴스를 가리킨다.
function Circle(radius) {
    this.radius = radius;
}

Circle.prototype.getDiameter = function () {
    return this.radius * 2;
};

const circle = new Circle(5);
console.log(circle.getDiameter()); // 10
  • 자바스크립트의 this는 함수가 호출하는 방식에 따라 this에 바인딩될 값. 즉 this 바인딩이 동적으로 결정된다.
  • strict mode 역시 this 바인딩에 영향을 준다. strict mode가 적용된 일반 함수 내부의 this에서는 undefined가 바인딩된다.
  • this는 일반적으로 객체의 메서드 내부 또는 생성자 함수 내부에서만 의미가 있다.
// 전역에서 this는 전역 객체 window를 가리킨다.
console.log(this); // window

function square(number) {
    // 일반 함수 내부에서 this는 전역 객체 window를 가리킨다.
    console.log(this); // window
    return number * number;
}
square(2);

const person = {
    name: 'Lee',
    getName() {
        // 메서드 내부에서 this는 메서드를 호출한 객체를 가리킨다.
        console.log(this); // {name: 'Lee', getName: f}
        return this.name;
    }
};
console.log(person.getName()); // Lee

function Person(name) {
    this.name = name;
    // 생성자 함수 내부에서 this는 생성자 함수가 생성할 인스턴스를 가리킨다.
    console.log(this); // Person {name: 'Lee'}
}
const me = new Person('Lee');

22.2 함수 호출 방식과 this 바인딩

  • this 바인딩은 함수 호출 방식, 즉 함수가 어떻게 호출되었는지에 따라 동적으로 결정된다.

    렉시컬 스코프는 함수 정의가 평가되어 함수 객체가 생성되는 시점에 상위 스코프 결정.
    this 바인딩은 함소 호출 시점에 결정.

22.2.1 일반 함수 호출

  • 기본적으로 this에는 전역 객체가 바인딩 된다.
  • 전역 함수는 물론이고, 중첩 함수를 일반 함수로 호출하면 함수 내부의 this에는 전역 객체가 바인딩된다.
function foo() {
    console.log(this); // window
    function bar() {
        console.log(this); // window
    }
    bar();
}
foo();
  • 일반 함수에서 this는 의미가 없다. strict mode가 적용된 일반 함수 내부의 this에는 undefined가 바인딩된다.
function foo() {
    'use strict';
    console.log(this); // undefined
    function bar() {
        console.log(this); // undefined
    }
    bar();
}
foo();
  • 메서드 내에서 정의한 중첩 함수도 일반 함수로 호출되면 중첩 함수 내부의 this에는 전역 객체가 바인딩된다.
var value = 1;

const obj = {
    value: 100,
    foo() {
        console.log(this); // {value: 100, foo: f}
        console.log(this.value); // 100

        function bar() {
            console.log(this); // window
            console.log(this.value); // 1
        }

        bar();
    }

}
obj.foo();
  • 콜백 함수가 일반 함수로 호출된다면 콜백 함수 내부의 this에도 전역 객체가 바인딩된다. 어떠한 함수라도 일반 함수로 호출되면 this에 전역 객체가 바인딩된다.
var value = 1;

const obj = {
    value: 100,
    foo() {
        console.log(this); // {value: 100, foo: f}
        console.log(this.value); // 100

        setTimeout(function(){
            console.log(this); // window
            console.log(this.value); // 1
        }, 100);
    }

}
obj.foo();
  • 이처럼 일반 함수로 호출된 모든 함수(중첩 함수, 콜백 함수 포함) 내부의 this에는 전역 객체가 바인딩된다.
  • 단, 중첩 함수 또는 콜백 함수는 외부 함수를 돕는 헬퍼 함수의 역할을 하므로 외부 함수의 일부 로직을 대신하는 경우가 대부분이다. 외부 함수인 메서드와 중첩 함수 또는 콜백 함수의 this가 일치하지 않는다는 것은 헬퍼 함수로 동작하기 어렵게 만든다.
  • 메서드 내부의 중첩 함수나 콜백 함수의 this 바인딩과 메서드의 this 바인딩을 일치시키기 위한 방법은 다음과 같다.
// 1. 변수에 this 할당
var value = 1;

const obj = {
    value: 100,
    foo() {
        // 변수에 this 바인딩 할당.
        const that = this;

        // 콜백 함수 내부에서 변수 that 참조
        setTimeout(function(){
            console.log(that.value); // 100
        }, 100);
    }

}
obj.foo();

// 2. Function.prototype.bind 메서드 활용
const obj2 = {
    value: 100,
    foo() {
        // 콜백 함수에 명시적으로 this 바인딩
        setTimeout(function(){
            console.log(that.value); // 100
        }.bind(this), 100);
    }

}
obj2.foo();

// 3. 화살표 함수 활용
const obj3 = {
    value: 100,
    foo() {
        // 화살표 함수 내부의 this는 사우이 스코프의 this를 가리킨다.
        setTimeout(() => {
            console.log(that.value); // 100
        }, 100);
    }

}
obj3.foo();

22.2.2 메서드 호출

  • 메서드 내부의 this에는 메서드를 호출한 객체, 즉 메서드를 호출할 때 메서드 이름 앞의 마침표(.) 연산자 앞에 기술한 객체가 바인딩된다.
  • 메서드 내부의 this 메서드를 소유한 객체가 아닌 메서드를 호출한 객체에 바인딩 된다.
const person = {
    name: 'Lee',
    getName() {
        // 메서드 내부의 this는 메서드를 호출한 객체에 바인딩된다.
        return this.name;
    }
};
// 메서드 getName을 호출한 객체는 person이다.
console.log(person.getName()); // Lee

const anotherPerson = {
    name: 'Kim'
};
// getName 메서드를 anotherPerson 객체의 메서드로 할당
anotherPerson.getName = person.getName;
// getName 메서드를 호출한 객체는 anotherPerson.
console.log(anotherPerson.getName()); // Kim

// getName 메서드 변수에 할당
const getName = person.getName;
// getName 메서드를 일반 함수로 호출 -> this.name === window.name
console.log(getName()); // ''
  • 프로토타입 메서드 내부에서 사용된 this도 일반 메서드와 마찬가지로 해당 메서드를 호출한 객체에 바인딩된다.
function Person(name) {
    this.name = name;
}

Person.prototype.getName = function(){
    return this.name;
};

const me = new Person('Lee');
// getName 메서드를 호출한 객체는 me
console.log(me.getName()); // Lee

Person.prototype.name = 'Kim';

// getName 메서드를 호출한 객체는 Person.prototype
console.log(Person.prototype.getName()); // Kim

22.2.3 생성자 함수 호출

  • 생성자 함수 내부의 this에는 생성자 함수가 생성할 인스턴스가 바인딩된다.
function Circle(radius) {
    this.radius = radius;
    this.getDiameter = function() {
        return this.radius * 2;
    };
}

const circle1 = new Circle(5);
const circle2 = new Circle(10);

console.log(circle1.getDiameter()); // 10
console.log(circle2.getDiameter()); // 20
  • 생성자 함수는 new 연산자와 함께 호출하지 않으면, 일반 함수로 동작한다.

22.2.4 Function.prototype.apply/call/bind 메서드에 의한 간접 호출

  • apply, call, bind 메서드는 Function.prototype의 메서드다. 모든 함수가 상속받아 사용할수 있다.
  • apply / call / bind 메서드에 첫번째 인수로 전달한 객체를 this 바인딩한다.
  • apply와 call 메서드의 본질적인 기능은 함수를 호출하는 것이다.
// Function.prototype.apply(thisArg[, argsArray]);
// Function.prototype.call(thisArg[, arg1[, arg2, ...]]);

function getThisBinding() {
    console.log(arguments);
    return this;
}

const thisArg = { a: 1 };

// apply 메서드는 함수의 인수를 <배열>로 묶어 전달
console.log(getThisBinding.apply(thisArg, [1, 2, 3]));
// Arguments(3) [1, 2, 3, callee: f, Symbol(Symbol.iterator): f]
// {a: 1}

// call 메서드는 함수의 인수를 <쉼표>로 구분하여 전달
console.log(getThisBinding.call(thisArg, 1, 2, 3));
// Arguments(3) [1, 2, 3, callee: f, Symbol(Symbol.iterator): f]
// {a: 1}
  • bind 메서드는 함수를 호출하지 않고 this로 사용할 객체만 전달한다.
function getThisBinding() {
    return this;
}

const thisArg = { a: 1 };

// bind 메서드는 함수에 this로 사용할 객체를 전달한다.
// bind 메서드는 함수를 호출하지 않는다.
console.log(getThisBinding.bind(thisArg)); // getThisBinding
// bind 메서드는 함수를 호출하지는 않으므로 명시적으로 호출해야한다.
console.log(getThisBinding.bind(thisArg)()); // {a: 1}

0개의 댓글