Java集合indexOfSubList()方法及示例

集合类indexOfSubList()方法

  • indexOfSubList()方法在java.util包中可用。

  • indexOfSubList()方法用于返回给定完整列表(src)中给定子列表(dest)首次出现的起始索引。

  • indexOfSubList()方法是静态方法,因此可以使用类名进行访问,如果尝试使用类对象访问该方法,则不会收到错误。

  • 返回子列表的索引时,indexOfSubList()方法不会引发异常。

语法:

    public static int indexOfSubList(List src, List dest);

参数:

  • List src –表示源列表,在其中过滤给定目标的首次出现。

  • List dest –代表给定源列表(src)的子列表。

返回值:

此方法的返回类型为int,如果存在,则返回源列表(src)中给定列表(dest)首次出现的开始索引,否则返回1,如果不存在该元素或列表不存在-空。

示例

//Java程序是演示示例
//indexOfSubList()集合的int-

import java.util.*;

public class IndexOfSubList {
    public static void main(String args[]) {
        //实例化一个LinkedList-   
        List src_l = new LinkedList();
        List dest_l = new LinkedList();

        //通过使用add()方法是
        //在链表src_l中添加元素
        src_l.add(10);
        src_l.add(20);
        src_l.add(30);
        src_l.add(40);
        src_l.add(50);

        //通过使用add()方法是
        //在链接列表dest_l中添加元素
        dest_l.add(40);
        dest_l.add(50);

        //显示LinkedList-
        System.out.println("link_l: " + src_l);
        System.out.println("dest_l: " + dest_l);

        System.out.println();

        //通过使用indexOfSubList()方法是
        //返回src_l中dest_l的起始索引

        int index = Collections.indexOfSubList(src_l, dest_l);

        //显示索引
        System.out.println("Collections.indexOfSubList(src_l,dest_l): " + index);
    }
}

输出结果

link_l: [10, 20, 30, 40, 50]
dest_l: [40, 50]

Collections.indexOfSubList(src_l,dest_l): 3