728x90 반응형 this2 this this자바스크립트에서 this는 함수가 호출될 때, 즉 함수의 실행 문맥에 따라 결정되는 특수한 객체이다. Global Context전역 문맥전역에서 this를 사용할 때 window 또는 global 객체를 가리킨다. console.log(this) // this 는 window or global 객체이다 Function Context함수 문맥일반 함수 내부에서 this는 호출된 문맥에 따라 다르다. 기본적으로 전역 문맥에서 호출된 함수의 this는 전역 객체를 가리키지만 엄격 모드에서는 this가 undefined로 설정된다. "use strict";function Func(){ console.log(this);}Func(); // undefined Method Context메서드 문맥객체의.. 2024. 8. 26. C# 멤버 명시 키워드 : this this 인스턴스 특정 현재 인스턴스를 가리키는 기능을 한다. 주로 멤버 메서드나 생성자에서 인스턴스 변수를 참조할 때 사용한다. class Person { private string name; private int age; public Person(string name, int age) { this.name = name; this.age = age; } public void PrintInfo() { Console.WriteLine("Name: " + this.name); Console.WriteLine("Age: " + this.age); } } 이와 같은 경우 this 키워드는 동일한 이름의 name과 age를 멤버와 매개변수를 구분하는 데 사용된다. PrintInfo 내에서는 this를 사용하지 않.. 2023. 4. 25. 이전 1 다음 728x90 반응형