-
Notifications
You must be signed in to change notification settings - Fork 449
/
Copy path20.3 Sets.java
62 lines (44 loc) · 1.07 KB
/
20.3 Sets.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import java.util.Set;
import java.util.HashSet;
import java.util.TreeSet;
import java.util.Collection;
import java.util.Iterator;
/*
import java.util.List;
import java.util.ArrayList;
public class Demo {
public static void main(String[] args){
List<Integer> nums=new ArrayList<Integer>();
nums.add(6);
nums.add(5);
nums.add(8);
nums.add(2);
nums.add(6);
//nums.add("5");
for(Object n:nums)
{
int num=(Integer)n;
System.out.println(num+2);
}
}
}
*/
public class Demo {
public static void main(String[] args){
// Set<Integer> nums=new HashSet<Integer>();
// Set<Integer> nums=new TreeSet<Integer>();
Collection<Integer> nums=new TreeSet<Integer>();
nums.add(62);
nums.add(54);
nums.add(82);
nums.add(21);
//nums.add("5");
Iterator<Integer> values = nums.iterator();
while(values.hasNext())
System.out.println(values.next());
// for(int n:nums)
// {
// System.out.println(n);
// }
}
}