赞
踩
1
2
3
4
5
6
7
8
9
10
|
Collection coll =
new
Vector();
//LinkedList(); //ArrayList();
coll.add(
"Tody"
);
coll.add(
"is"
);
coll.add(
"Sunday."
);
// Output all elements by iterator
Iterator it = coll.iterator();
while
(it.hasNext()) {
System.out.print(it.next() +
" "
);
}
|
1
2
3
4
5
6
7
8
9
10
|
Collection coll =
new
HashSet();
coll.add(
"Tody"
);
coll.add(
"is"
);
coll.add(
"Sunday."
);
// Output all elements by iterator
Iterator it = coll.iterator();
while
(it.hasNext()) {
System.out.print(it.next() +
" "
);
}
|
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。