aijava

welcome to my online log ! open java new world! Taste java charm........
posts - 1, comments - 4, trackbacks - 0, articles - 42
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

java基础学习9(java.util.Vector)

Posted on 2006-11-12 23:02 阅读(169) 评论(0)  编辑  收藏 所属分类: java基础学习系列
import  java.util.Vector;

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

     // initial size is 3, increment is 2
     Vector<Integer> v =  new  Vector<Integer> ( 3 2 ) ;

     System.out.println ( "Initial size: "  + v.size ()) ;
     System.out.println ( "Initial capacity: "  + v.capacity ()) ;

     v.addElement ( 1 ) ;
     v.addElement ( 2 ) ;

     System.out.println ( "First element: "  + v.firstElement ()) ;
     System.out.println ( "Last element: "  + v.lastElement ()) ;

     if  ( v.contains ( 3 ))
       System.out.println ( "Vector contains 3." ) ;
   }
}

http://freehost13.websamba.com