Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 토비의스프링
- Spring
- 메이븐
- springwebmvc
- 자바
- gradle
- String
- springboot
- AutoConfiguration
- hibernate
- 빌드툴
- Immutable
- JPA
- Kotlin for Java Developers
- DesignPattern
- 링커
- ApplicationContext
- ORM
- IOC
- 프록시
- DispatcherServlet
- 클린코드
- 토비의스프링3.1
- FunctionalInterfaces
- exception
- 링킹
- 컴퓨터시스템
- beanfactory
- java
- lambda
Archives
- Today
- Total
목록nullability (1)
엔지니어로 가는 길
[Kotlin for Java Developers] Nullability
Table Of Contents 1. Nullable types 2. Nullable types under the hood 3. Safe casts 4. Importance of nullability 5. TMI 1. Nullable types The problem of nullability is sometimes referred to as billion dollar mistake. `NullPointerException` is really hard to fix. Modern approach: to make NPE compile-time error, not run-time error 코틀린은 nullable types과 non-nullable types을 구분한다. val s1: String = alwa..
프로그래밍/Kotlin
2022. 12. 11. 22:00