this
-
[Android] Context 를 매개인자로 갖는 메소드, this는 왜 쓰는걸까?BACK-END/Android 2020. 11. 10. 16:07
developer.android.com/reference/android/app/Activity Context 의 가족관계도를 살펴보자. Object | Context | ContextWrapper | ContextThemeWrapper | Activity | MainActivity | class MainActivity extends Activity 이 가족 관계도를 설명해보자면, ContextWrapper 는 Context 다. ContextThemeWrapper 도 Context 다. Activity 도 Context 다! MainActivity 도 Context 다!! 결론 : 우리는 Context 라는 성을 가진 Context 가문인것이다. 따라서 괄호 안에 매개인자로 Context 를 요구하면, ..