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
- db
- 김영한
- java
- Thymeleaf
- 스프링 핵심 원리
- AOP
- http
- JPQL
- JDBC
- jpa
- 알고리즘
- 자바
- transaction
- Spring Boot
- Servlet
- 스프링 핵심 기능
- spring
- SpringBoot
- Exception
- Greedy
- springdatajpa
- QueryDSL
- Proxy
- 인프런
- 그리디
- 스프링
- Android
- 백준
- kotlin
- pointcut
Archives
- Today
- Total
개발자되기 프로젝트
[Kotlin] if-else, when문 본문
if-else와 when 문
if (condition-is-true) {
execute-this-code
} else if (condition-is-true) {
execute-this-code
} else {
execute-this-code
}
when (variable) {
matches-value > execute-this-code
matches-value > execute-this-code
...
}
Comments