java.util.Vector.subList()方法實例
subList(int fromIndex,int toIndex) 方法用於返回fromIndex(包括),以及則為toIndex(不包括)列表的部分視圖。返回由此List支持的List,因此改變了返回的列表將反映在此列表中,反之亦然。
聲明
以下是java.util.Vector.subList()方法的聲明
public ListsubList(int fromIndex,int toIndex)
參數
-
fromIndex--這是子列表的低端點(包括)。
-
toIndex--這是子列表的高點(不包括)。
返回值
該方法調用返回指定範圍內List的視圖。
異常
-
IndexOutOfBoundsException--若終端索引值超出範圍,這是將會被拋出。
-
IllegalArgumentException--這被拋出,如果終結點索引是無序的。
例子
下麵的例子顯示java.util.Vector.subList()方法的使用。
package com.yiibai; import java.util.Vector; public class VectorDemo { public static void main(String[] args) { // create an empty Vector vec with an initial capacity of 4 Vectorvec = new Vector (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]