이번 글에서는 List가 제공하는 subList라는 메서드에 대해서 살펴보자. List subList(int fromIndex, int toIndex); 무엇에 쓰는 물건인고? 이름 그대로 어떤 리스트의 구성 요소 중 fromIndex에서 toIndex까지의 요소를 반환해준다. 예를 들어 List nums = new ArrayList(); for(int i=0; i
[Java]List의 subList 살펴보기!
이번 글에서는 List가 제공하는 subList라는 메서드에 대해서 살펴보자. List subList(int fromIndex, int toIndex); 무엇에 쓰는 물건인고? 이름 그대로 어떤 리스트의 구성 요소 중 fromIndex에서 toIndex까지의 요소를 반환해준다. 예를 들어 List nums = new ArrayList(); for(int i=0; i
2022.02.10