位置:首頁 > 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