[안드로이드] @Nullable @NonNull ??
IT/Android

[안드로이드] @Nullable @NonNull ??

Nullness 주석

 

 @Nullable : null이 될 수 있는 매개변수, 변수, 반환 값을 나타냄.

 @NonNull : null이 될 수 없는 매개변수, 변수, 반환 값을 나타냄.

 

참고.

https://developer.android.com/studio/write/annotations?hl=ko