JAVA - 조건문과 선택문 그리고 반복문
조건문 if if (조건식) { 해당 조건이 참인 경우 로직 수행... } if-else if (조건식) { 해당 조건이 참인 경우 로직 수행... } else { 조건이 거짓인 경우 로직 수행... } 선택문 swich if-else와 다르게 하나의 조건으로 여러 액션을 취할 수 있습니다. swich문은 Primitive type과 Reference type과 Enum, String과 함께 동작할 수 있습니다. break문이 없으면 break문을 만나거나 swich문이 끝날 때까지 해당 case문 아래에 있는 모든 case문의 코드가 실행됩니다. java 7부터는 swich문에 String을 사용할 수 있습니다. enum Day{ Monday, Tuesday, Wednesday, Sunday } pub..
JAVA/JAVA기본
2021. 12. 28. 21:26
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- JDK Dynamic Proxy와 CGLIB의 차이
- 서비스 기반 아키텍처
- microkernel architecture
- java ThreadLocal
- java userThread와 DaemonThread
- @ControllerAdvice
- 람다 표현식
- spring boot redis 대기열 구현
- 레이어드 아키텍처란
- space based architecture
- pipeline architecture
- 자바 백엔드 개발자 추천 도서
- spring boot 엑셀 다운로드
- polling publisher spring boot
- spring boot poi excel download
- spring boot excel download paging
- service based architecture
- transactional outbox pattern
- spring boot redisson sorted set
- pipe and filter architecture
- redis sorted set으로 대기열 구현
- transactional outbox pattern spring boot
- redis 대기열 구현
- spring boot redisson 분산락 구현
- redis sorted set
- 트랜잭셔널 아웃박스 패턴 스프링부트
- 공간 기반 아키텍처
- 트랜잭셔널 아웃박스 패턴 스프링 부트 예제
- spring boot excel download oom
- spring boot redisson destributed lock
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함