位置:首页 > Java技术 > Java.util包 > java.util.Collections.lastIndexOfSubList()方法实例

java.util.Collections.lastIndexOfSubList()方法实例

lastIndexOfSubList(List<?>, List<?>) 方法用于获取指定源列表中指定的目标列表中最后一次出现的起始位置。

声明

以下是java.util.Collections.lastIndexOfSubList()方法的声明。

public static int lastIndexOfSubList(List<?> source, List<?> target)

参数

  • source--这是在从中搜索目标的最后一个匹配的列表。

  • target--这是要搜索的源的一个子列表的列表。

返回值

方法调用返回指定目标列表的最后出现的起始位置指定源列表,或者-1,如果没有这样发生。

异常

  • NA

例子

下面的例子显示java.util.Collections.lastIndexOfSubList()方法的使用

package com.yiibai;

import java.util.*;

public class CollectionsDemo {
   public static void main(String args[]) {
      // create two array list objects       
      List arrlistsrc = new ArrayList();
      List arrlisttarget = new ArrayList();
      
      // populate two lists
      arrlistsrc.add("A");
      arrlistsrc.add("B");
      arrlistsrc.add("C");
      arrlistsrc.add("D");
      arrlistsrc.add("E"); 
      
      arrlisttarget.add("C");
      arrlisttarget.add("D");
      arrlisttarget.add("E");
           
      // check starting position of the last occurrenc
      int index = Collections.lastIndexOfSubList(arrlistsrc, arrlisttarget);
      
      System.out.println("Starting position is: "+index);    
   }    
}

现在编译和运行上面的代码示例,将产生以下结果。

Starting position is: 2