码迷,mamicode.com
首页 > 其他好文 > 详细

14.7-2

时间:2015-10-16 21:59:19      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

 1 package jihe;
 2 
 3 import java.util.*;
 4 
 5 public class Test {
 6     
 7     public static void main(String[] args)
 8     {
 9         //创建set类的实例
10         Set<String> set = new TreeSet<>();
11         
12         //添加元素
13         set.add("A");
14         set.add("a");
15         set.add("c");
16         set.add("C");
17         set.add("a");
18         
19         //遍历集合
20         for(String x : set)
21         {
22             System.out.println("set = " + x);
23         }
24         
25         
26         
27         
28         
29         //创建List类的实例
30         List<String> list = new ArrayList<>();
31         
32         //添加元素
33         list.add("A");
34         list.add("a");
35         list.add("c");
36         list.add("C");
37         list.add("a");
38         
39         //遍历集合
40         for(String x : list)
41         {
42             System.out.println("list = " + x);
43         }
44         
45         
46     }
47 
48 }

运行结果

set = A
set = C
set = a
set = c
list = A
list = a
list = c
list = C
list = a

 

14.7-2

标签:

原文地址:http://www.cnblogs.com/dirgo/p/4886466.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!