다음 예에서는 Collections 클래스의 indexOfSubList() 및 lastIndexOfSubList() 메서드를 사용하여 하위 목록이 목록에 있는지 확인하고 목록에서 하위 목록의 위치를 확인하는 방법을 보여줍니다.
/* author by w3cschool.cc Main.java */ import java.util.*; public class Main { public static void main(String[] args) { List list = Arrays.asList("one Two three Four five six one three Four".split(" ")); System.out.println("List :"+list); List sublist = Arrays.asList("three Four".split(" ")); System.out.println("子列表 :"+sublist); System.out.println("indexOfSubList: " + Collections.indexOfSubList(list, sublist)); System.out.println("lastIndexOfSubList: " + Collections.lastIndexOfSubList(list, sublist)); } }
위 코드 실행의 출력 결과는 다음과 같습니다.
List :[one, Two, three, Four, five, six, one, three, Four] 子列表 :[three, Four] indexOfSubList: 2 lastIndexOfSubList: 7
위는 Java 예제 - List에서 가로채는 내용입니다. 더 많은 관련 내용은 PHP 중국어 웹사이트( www.php.cn)!