-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIteratorTest.java
More file actions
87 lines (72 loc) · 2.38 KB
/
Copy pathIteratorTest.java
File metadata and controls
87 lines (72 loc) · 2.38 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package collection.java1;
import org.junit.Test;
import java.util.*;
public class IteratorTest {
@Test
public void test(){
Collection coll = new ArrayList();
coll.add(123);
coll.add(new String("Alex"));
coll.add("collection");
coll.add(new Date());
coll.add(new Person("Coco", 24));
Iterator iterator = coll.iterator();
/* method 1*/
System.out.println(iterator.next());
System.out.println(iterator.next());
System.out.println(iterator.next());
System.out.println(iterator.next());
System.out.println(iterator.next());
// exception :
// NoSuchElementException
// System.out.println(iterator.next());
/* method 2 , not recommend */
// for (int i = 0; i < coll.size(); i++) {
// System.out.println(iterator.next());
// }
/* method 3 */
System.out.println("\n**************");
Iterator iter = coll.iterator();
while(iter.hasNext()){
System.out.println(iter.next());
}
/* wrong method 1
* escape the first , third ... one and will get NoSuchElementException
* */
// while(iterator.next() != null){
// System.out.println(iterator.next());
// }
/* wrong method 2
* dead loop, always prints 123, it will generate a new interator obj everytime we call iterator()
* */
// while(coll.iterator().hasNext()){
// System.out.println(coll.iterator().next());
// }
}
@Test
public void test2(){
Collection coll = new ArrayList();
coll.add(123);
coll.add(new String("Alex"));
coll.add("collection");
Date date = new Date();
coll.add(date);
coll.add(new Person("Coco", 24));
Iterator iter = coll.iterator();
while(iter.hasNext()){
Object obj = iter.next();
// remove "collection" and "date"
if("collection".equals(obj) || date.equals(obj) ){
System.out.println("collection".equals(obj));
iter.remove();
// System.out.println(coll);
}
}
/* remove() */
// generate new iterator
Iterator iter1 = coll.iterator();
while(iter1.hasNext()){
System.out.println(iter1.next());
}
}
}