aijava

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

java基础学习7(java.util.Enumeration)

Posted on 2006-11-05 17:57 阅读(189) 评论(0)  编辑  收藏 所属分类: java基础学习系列
import  java.util.Enumeration;

class  collection  implements  Enumeration  {
   private  int  count =  0 ;

   private  boolean  more =  true ;

   public  boolean  hasMoreElements () {
     return  more;
   }

   public  Object nextElement () {
     count++;
     if  ( count >  4 )
       more =  false ;
     return new  Integer ( count ) ;
   }
}

public class  MainClass  {
   public static  void  main ( String args []) {
     Enumeration e =  new  collection () ;
     while  ( e.hasMoreElements ()) {
       System.out.println ( e.nextElement ()) ;
     }
   }
}

http://freehost13.websamba.com