반응형
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
- application-properties
- spring
- abap
- 쿠키란
- controller
- for all entries in
- .orelseThrow
- spring MVC
- Testcode
- springSecurityFilterChain 오류
- 필터의 정의
- java.lang.AssertionError
- filter vs interceptor
- SAP
- BindingResult
- 김영한
- abap value in field Data Class error
- n+1
- 401오류
- Validation
- jpa
- 세션이란
- @Controller
- 필터vs인터셉터
- MVC
- 구글 보안 api 활용
- 쿠키의 정의
- 인터셉터의 정의
- optional
- SpringMVC
Archives
- Today
- Total
목록ArrayList vs HashMap (1)
SAP공장
ArrayList vs HashMap ,HashMap vs HashTable, 제네릭이란?
정리 Q . ArrayList vs HashMap 차이점은? ArrayList 는 배열기반이며 각 데이터마다의 인덱스(번호)를 가지고 있는 구조 HashMap은 Map Interface중 하나(배열 + 연결)이며, 를 가지고 Entry로 저장한다. Q. HashMap vs HashTable 비교 HashMap은 null값 허용 O + 동기화 x HashTable은 null값 허용 x + 동기화 O 따라서 멀티스레드 환경에서는 HashTable을 사용하고, Java version 5 이상 부터는 동시성issue를 해결하기 위해 Hashmap을 ConcurrentHashMap으로 사용하자. Q. 제네릭이 뭐야? new ArrayList(); // 이녀석이 Generics 이다. 안에 타입을 선언해주면 Lis..
[WEB]Back-end/Java
2022. 2. 10. 18:15