黑马程序员技术交流社区
标题:
Collection集合存储字符串并遍历
[打印本页]
作者:
JohnChan
时间:
2016-5-29 20:39
标题:
Collection集合存储字符串并遍历
1. Collection集合存储字符串并遍历
分析:
(1)创建集合对象
(2)创建字符串对象
(3)把字符串对象添加到集合中
(4)遍历集合2:代码范例
1 package cn.itcast_04;
2
3 import java.util.ArrayList;
4 import java.util.Collection;
5 import java.util.Iterator;
6
7 /*
8 * 需求:存储字符串并遍历。
9 *
10 * 分析:
11 * A:创建集合对象
12 * B:创建字符串对象
13 * C:把字符串对象添加到集合中
14 * D:遍历集合
15 */
16 public class CollectionTest {
17 public static void main(String[] args) {
18 // 创建集合对象
19 Collection c = new ArrayList();
20
21 // 创建字符串对象
22 // 把字符串对象添加到集合中
23 c.add("林青霞");
24 c.add("风清扬");
25 c.add("刘意");
26 c.add("武鑫");
27 c.add("刘晓曲");
28
29 // 遍历集合
30 // 通过集合对象获取迭代器对象
31 Iterator it = c.iterator();
32 // 通过迭代器对象的hasNext()方法判断有没有元素
33 while (it.hasNext()) {
34 // 通过迭代器对象的next()方法获取元素
35 String s = (String) it.next();
36 System.out.println(s);
37 }
38 }
39 }
复制代码
作者:
左星辰
时间:
2016-5-29 21:07
集合啊集合
作者:
haojingwei310
时间:
2016-5-29 22:33
还真不错
作者:
Kingchen
时间:
2016-5-29 22:37
顶一个!
作者:
nanliner
时间:
2016-5-30 00:08
不错诶,顶一个
作者:
1985206835long
时间:
2016-5-30 10:09
很好很好很好
作者:
1985206835long
时间:
2016-5-30 10:55
很好很好很好
作者:
kid_kaidou
时间:
2016-5-30 11:04
泛型啊泛型
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2