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
- springboot
- hibernate
- java
- JPA
- Immutable
- DispatcherServlet
- springwebmvc
- 빌드툴
- lambda
- Kotlin for Java Developers
- 토비의스프링
- 메이븐
- 토비의스프링3.1
- 프록시
- gradle
- String
- AutoConfiguration
- ORM
- 클린코드
- exception
- 컴퓨터시스템
- 링킹
- Spring
- DesignPattern
- FunctionalInterfaces
- 자바
- IOC
- ApplicationContext
- beanfactory
- 링커
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