位置:首頁 > Java技術 > Java.util包 > java.util.Vector.trimToSize()方法實例

java.util.Vector.trimToSize()方法實例

trimToSize() 方法是用來剪裁此向量的容量進行向量的當前大小。如果此向量的容量比當前的大小更大,則該容量被改變為當前大小。

聲明

以下是java.util.Vector.trimToSize()方法的聲明

public void trimToSize()

參數

  • NA

返回值

NA

異常

  • NA

例子

下麵的例子顯示java.util.Vector.trimToSize()方法的使用。

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      
      Vector vec = new Vector(10);

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

      // let us print the size of the vector
      System.out.println("Size of the vector: "+vec.capacity());
      
      // trim the size of the vector
      System.out.println("Trimming the vector");
      vec.trimToSize();
      
      System.out.println("Size of the vector: "+vec.capacity());
   }     
}

現在編譯和運行上麵的代碼示例,將產生以下結果。

Size of the vector: 10
Trimming the vector
Size of the vector: 4