본문 바로가기

JavaScript/JS 기초

Javascript this와 apply, call, bind 메서드




Javascript this와 apply, call, bind 메서드

this

-상태를 나타내는 프로퍼티, 동작을 나타내는 메서드를 하나의 논리적인 단위로 묶은 복합적인 자료구조 => 객체
-메서드는 자신이 속한 객체의 상태, 즉 프로퍼티를 변경하는데 사용되기도 함
-메서드가 자신이 속한 객체의 프로퍼티를 참조하려면, 자신이 속한 객체를 가리키는 식별자를 참조 할수 있어야 한다.


const circle = {
  radius: 5;
  getDiameter(){
   return 2 * circle.radius; 
  }
};

console.log(circle.getDiameter)); // 10

여기서 getDiameter는 Circle 객체의 radius(프로퍼티)를 변경한다. 자기 자신이 속한 객체를 참조하는 방식이다. *재귀적 방식
생성자 함수 방식으로 인스턴스를 생성하는 경우를 보자.

function Circle(radius){
  // 이 시점에는 생성자 함수 자신이 생성할 인스턴스를 가르키는 식별자를 알 수 없다.
  ???.radius = radius;
}
Circle.prototype.getDiameter = function(){
  // 이 시점에는 생성자 함수 자신이 생ㅅ어할 인스턴스를 가르키는 식별자를 알 수 없다.
  return 2 * ???.radius;
};

// 생성자 함수로 인스턴스를 생성하려면 먼저 생성자 함수를 정의해야 한다.
const circle = new Circle(5);

-생정자 함수에 의한 객체 생성 방식 : 생성자 함수 정의 -> new
-생성자 함수를 정의하는 시점 아직 인스턴스 없음. ???.radius가 어떤 걸 참조해야할지 모르는 상태.

그래서 this 사용. this는 자신이 속한 객체 또는 자신이 생성할 인스턴스를 가리키는 자기 참조 변수self-referencing variable이다. 함수 호출하면 자바스크립트 엔진이 this를 함수 내부에 암묵적으로 전달


const circle = {
  radius: 5;
  getDiameter(){
   return 2 * this.radius; 
  }
};

console.log(circle.getDiameter)); // 10

객체에서 this는 메서드를 호출한 객체, 즉 circle을 가리킨다.
function Circle(radius){
  // 생성자 함수가 생성할 인스턴스를 가리킨다.
  this.radius = radius;
}
Circle.prototype.getDiameter = function(){
  // 생성자 함수가 생성할 인스턴스를 가리킨다.
  return 2 * this.radius;
};

// 인스턴스 생성
const circle = new Circle(5);

생성자 함수 내부의 this는 생성자 함수가 생성할 인스턴스를 가리킨다.
이처럼 this는 상황에 따라 가리키는 대상이 다르다.

자바나 C++ 같은 클래스 기반 언어에서 this는 언제나 클래스가 생성하는 인스턴스를 가리킨다.
자바스크립트의 this는 함수가 호출되는 방식에 따라 this 바인딩이 동적으로 결졍된다.

// this는 어디서든지 참조 가능하다.
// 전역에서 this는 전역 객체 window를 가리킨다.
console.log(this); //window

// 일반 함수
function square(number){
    console.log(this); // window
      //-> strict mode에선 undefined 바인딩. 일반 함수 내부에서 this를 사용할 필요가 없기 때문
  return number * number;
}

square(2);

// 객체
const person = {
  name: 'Lee',
  getName() {
      console.log(this); // {name: 'Lee', getName: f}
    return this.name;
  }
};

console.log(person.getName()); // Lee

// 생성자 함수
function Person(name){
  this.name = name;
  console.log(this); //Person {name: "Lee"}
}

const me = new Person('Lee');

함수 호출 방식과 this 바인딩

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

1.일반 함수 호출
2.메서드 호출
3.생성자 함수 호출
4.Function.prototype.apply/call/bind 메서드에 의한 간접 호출


일반 함수 호출

this에는 전역 객체 global object가 바인딩 된다.

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

this는 객체의 프로퍼티나 메서드를 참조하기 위한 자기 참조 변수이다.
객체를 생성하지 않는 일반 함수에서 this는 의미가 없다. 객체를 찾다보니 최상위 객체인 window 전역 객체가 바인딩 된다.
'use stric'사용하면 undefined가 바인딩 된다.

객체의 메서드 내에서 정의한 함수는 어떻게 될까?

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();
    // 메서드 내에서 정의하였지만 일반 함수로 호출 된 것으로 보고 this에는 전역 객체가 바인딩된다.
  }
};

obj.foo();

콜백 함수도 일반 함수로 호출된다면 마찬가지이다.

var value = 1;
// 전역 객체의 프로퍼티

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

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

obj.foo();

setTimeout 함수는 두 번째 인자로 전달한 시간(ms)만큼 대기한 다음, 첫 번째 인수로 전달한 콜백 함수를 호출하는 타이머 함수이다.
하지만 중첩 함수나 콜백 함수를 외부 함수인 메서드에서 사용하는 this와 콜백 함수 this가 일치하지 않는다는 것은 중첩함수 또는 콜백 함수를 사용하기 어렵게 만든다. 이렇게 간편하게 사용할 수도 있다.

var value = 1;
// 전역 객체의 프로퍼티

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

obj.foo();

Function.prototype.apply/call/bind 메서드를 제공한다.

var value = 1;

const obj = {
  value: 100,
  foo() {
    setTimeout(function(){
      console.log(this.value); // 100
    }.bind(this), 100);
  }
};
obj.foo();
var value = 1;

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

메서드 호출

메서드 내부의 this에는 메서드를 호출한 객체가 바인딩된다.

const person = {
  name: 'Lee',
  getName() {
    //메서드 내부의 this는 메서드를 호출한 객체에 바인딩 된다.
   return this.name; 
  }
}
console.log(person.getName()); // Lee

주의할 건 메서드 내부의 this는 메서드 소유한 객체가 아니라 호출한 객체가 바인딩 된다는 것!

const anotherPerson = {
  name: 'Kim'
}
// getName 메서드를 anotherPerson 객체의 메서드로 할당
autherPerson.getName = person.getName;

// getName 메서드를 호출한 객체는 anotherPerson이다.
console.log(anotherPerson.getName()); // Kim

// getName 메서드를 변수에 할당
const getName = person.getName;

console.log(getName()); // 전역객체 window를 가르킴
// 브라우저 환경에서 window.name은 브라우저 창의 이름을 타나내는 빌트인 프로퍼티이며 기본값은 ''이다.

프로토타입 메서드 내부에서 사용된 this도 일반 메서드와 마찬가지로 해당 메서드르르 호출한 객체에 바인딩 된다.

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

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

const me = new Person('Lee');

console.log(me.getName()); // Lee

생성자 함수 호출

생성자 함수 내부의 this에는 생성자 함수가 (미래에) 생성할 인스턴스가 바인딩 된다.

function Circle(radius){
  // 생성자 함수 내부의 this는 생성자 함수가 생성할 인스턴스를 가리킨다.
  this.radius = radius;
  this.getDiameter = function (){
      return 2 * this.radius;
  };
}

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

console.log(circle1.getDiameter()); // 10
console.log(circle2.getDiameter()); // 20

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

apply, call, binda 메서드는 Function.prototype이 메서드다. 즉, 이들 메서드는 모든 함수가 상속 받아 사용할 수 있다.

apply와 call 메서드의 본질적인 기능은 함수를 호출하는 것.
함수를 호출하면서 첫 번째 인수로 전달한 특정 객체를 호출한 함수의 this에 바인딩한다.

function getThisBinding(){
    return this;  
}

// this로 사용할 객체
const thisArg = { a: 1 };

console.log(getThisBinding()); // window

// 인수 전달 된 객체가 this에 바인딩 된다.
console.log(getThisBinding.apply(thisArg)); // {a: 1}
console.log(getThisBinding.call(thisArg)); // {a: 1}

함수를 호출할 때 위와 같이 binding할 객체를 전달하지만 동시에 인수를 전달해 줄 필요가 있다.
apply는 호출할 함수의 인수를 배열로 묶어 전달하고,
call은 호출할 함수의 인수를 쉼표로 구분한 리스트 형식으로 전달한다.
전달하는 방식만 다를 뿐 this에 사용할 객체를 전달하면서 함수를 호출하는 것은 동일하다.

function getThisBinding(){
  console.log(arguments); // 전달받은 인수들
  return this;  
}

// this로 사용할 객체
const thisArg = { a: 1 };

// 전달할 인수를 배열로 묶어 전달한다.
console.log(getThisBinding.apply(thisArg, [1, 2, 3]));
// Arguments(3) [1, 2, 3, callee: f, Symbol(Symbol.iterator): f]
// {a: 1}

// 전달할 인수를 리스트 형식으로 전달한다.
console.log(getThisBinding.call(thisArg, 1, 2, 3)); // {a: 1
// Arguments(3) [1, 2, 3, callee: f, Symbol(Symbol.iterator): f]
// {a: 1}

Function.prototype.bind 메서드는 함수를 호출하지 않고, this로 사용할 객체만 전달한다.

function getThisBinding(){
  return this;  
}

// this로 사용할 객체
const thisArg = { a: 1 };

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

bind 메서드는 내부의 중첩 함수 또는 콜백 함수의 this가 불일치하는 문제를 해결할 때 유용하게 이용된다.

const person = {
  name: 'Lee',
  foo(callback){
    setTimeout(callback, 100);
  }
};

person.foo(function(){
  console.log(${this.name}); // window.name => ''
});

내부의 중첩 함수를 부르는 것과 비슷한 구조이다.
보조 함수 역할을 하기 때문에 person.foo 내부의 this와 콜백 함수 내부의 this가 상이하면 문맥상 문제가 발생할 수 있다.

const person = {
  name: 'Lee',
  foo(callback){
    setTimeout(callback.bind(this), 100);
  }
};

person.foo(function(){
  console.log(${this.name}); // person.name => 'Lee'
});




반응형