java.util.Vector.subList()


描述

所述subList(int fromIndex,int toIndex) 方法用来返回fromIndex(包括)元素范围为专属之间名单的该部分的视图。返回的List由此List支持,因此返回List中的更改将反映在此List中,反之亦然。

声明

以下是java.util.Vector.subList()方法的声明

public List subList(int fromIndex,int toIndex)

参数

fromIndex - 这是subList的低端点(包括)。

toIndex - 这是subList的高端点(不包括)。

返回值

方法调用返回此List中指定范围的视图。

异常

IndexOutOfBoundsException - 如果端点索引值超出范围,则抛出此异常

IllegalArgumentException - 如果端点索引出现故障,则抛出此异常

实例

以下示例显示了java.util.Vector.subList()方法的用法。

package com.tutorialspoint;

import java.util.*;

public class VectorDemo {
   public static void main(String[] args) {

      // create an empty Vector vec with an initial capacity of 4      
      Vector<Integer> vec = new Vector<Integer>(8);
      List sublist = new ArrayList(10);

      // use add() method to add elements in the vector
      vec.add(4);
      vec.add(3);
      vec.add(2);
      vec.add(1);
      vec.add(6);
      vec.add(7);
      vec.add(9);
      vec.add(5);

      // lets make a sublist
      sublist = vec.subList(2,6);

      // let us print the size of the vector
      System.out.println("Let us print the list: "+sublist);  
   }
}

让我们编译并运行上面的程序,这将产生以下结果。

Let us print the list: [2, 1, 6, 7]