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