1. 널 가능성(Nullability)
- 물음표 기호 ’ ? '를 사용하여 Null이 될 수 있는 여부를 컴파일러가 미리 감지하게 함.
- NPE처리를 위해 Nullable타입을 명시적으로 지원
1 | public void strLen(@NotNull String s1, @Nullable String s2) {...} |
1 | fun strLen(s1 : String, s2 : String?) {...} |
1 | public void strLen(@NotNull String s1, @Nullable String s2) {...} |
1 | fun strLen(s1 : String, s2 : String?) {...} |
기록을 통해 사람들과 공유하는 것을 좋아합니다.
Android Developer