[Android] getContext()와 requireContext()의 차이



getContext()와 requireContext()

먼저 메소드의 정의를 보면 다음과 같다.

@Nullable
public Context getContext() {
    return mHost == null ? null : mHost.getContext();
}
@NonNull
public final Context requireContext() {
    Context context = getContext();
    if (context == null) {
        throw new IllegalStateException("Fragment " + this + " not attached to a context.");
    }
    return context;
}

getContext()Nullable, requireContext()NonNull Annotation이 붙어있다.

getContext()는 context가 호스트에 붙어있지 않을 때 Null을 반환한다.
requireContext()는 getContext()에서 반환된 context가 Null인 경우 IllegalStateException를 throw한다.

일반적으로 Fragment에서 context에 접근하면 null이 아닌 값을 반환하지만,
Fragment가 Activity에 attach 되지 않은 경우 등의 예외가 발생할 수 있으므로 Fragment.getContext()가 항상 NonNull인 것은 아니다.
따라서 requireContext()를 통해 Context가 Null이 아님을 보장할 수 있다.

요약

Java의 경우 그냥 getContext()를 사용하면 되지만,
Kotlin의 경우 Null이 아닌 Context를 전달해주어야 한다면 requireContext()를 사용해야 한다.



:bookmark: REFERENCE
Use common Kotlin patterns with Android | Android Developers