티스토리 뷰
* indexOf
lst.indexOf(값);
- int 나 String 등의 리스트 상 위치 반환
- 객체는 주소값 으로 찾음
- 없으면 -1 을 반환
* BinarySearch
Collections.sort(lst2);
Collections.binarySearch(lst2, 값));
https://gs.saro.me/#!m=elec&jn=125
- 먼저 sort 가 필요
* CollectionUtils.select
http://flystone.tistory.com/196
https://stackoverflow.com/questions/13138990/how-to-search-in-a-list-of-java-object
- Apache commons-collection.jar 추가되어야 ...
https://stackoverflow.com/questions/13138990/how-to-search-in-a-list-of-java-object
* stream (Java 8 이상)
http://flystone.tistory.com/196
http://krksap.tistory.com/1021
'SW개발 > Java' 카테고리의 다른 글
이클립스 프로젝트 - Resource Location 폴더 변경 (0) | 2018.04.23 |
---|---|
Java PriorityQueue 우선순위 큐 (1) | 2018.04.13 |
[종합] 자바 정규표현식 (0) | 2018.03.09 |
자바 정규표현식 대소문자 (0) | 2018.03.09 |
jsoup html 추출시 개행 방법 (0) | 2017.11.01 |