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