java.util.Vector.subList(int fromIndex,int toIndex) 方法示例


java.util.Vector.subList(int fromIndex,int toIndex) 方法示例

package com.codingdict;

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);  
   }
}