当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Collections lastlastIndexOfSubList()用法及代码示例


Collections类lastIndexOfSubList()方法

  • lastIndexOfSubList() 方法可在java.util包。
  • lastIndexOfSubList() 方法用于返回给定 (dest) 给定源列表中的列表 (src)。
  • lastIndexOfSubList() 方法是一个静态方法,因此可以通过类名访问它,如果我们尝试使用类对象访问该方法,则不会出现错误。
  • lastIndexOfSubList() 方法在返回给定列表最后一次出现的索引时不抛出异常(dest)。

用法:

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

参数:

  • List src– 表示源列表,在其中过滤给定列表的最后一次出现(dest)。
  • List dest– 表示目标列表(dest) 过滤给定源列表的子列表(src)。

返回值:

这个方法的返回类型是int, 它返回给定子列表最后一次出现的起始索引 (dest) 在给定的源列表中 (src) 否则当未找到搜索或列表为空时返回 -1。

例:

// Java program is to demonstrate the example
// of int lastIndexOfSubList() of Collections

import java.util.*;

public class LastIndexOfSubList {
    public static void main(String args[]) {
        // Instantiate a LinkedList   
        List src_l = new LinkedList();
        List dest_l = new LinkedList();

        // By using add() method is to
        // add elements in linked list src_l
        src_l.add(10);
        src_l.add(20);
        src_l.add(30);
        src_l.add(40);
        src_l.add(50);

        // By using add() method is to
        // add elements in linked list dest_l
        dest_l.add(40);
        dest_l.add(50);

        // Display LinkedList
        System.out.println("link_l:" + src_l);
        System.out.println("dest_l:" + dest_l);

        System.out.println();

        // By using lastIndexOfSubList() method is to
        // return the starting index of last occurrence
        // of dest_l in src_l
        int index = Collections.lastIndexOfSubList(src_l, dest_l);

        //Display index
        System.out.println("Collections.lastIndexOfSubList(src_l,dest_l):" + index);
    }
}

输出

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

Collections.lastIndexOfSubList(src_l,dest_l):3


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Collections lastlastIndexOfSubList() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。