-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWildCards.java
More file actions
41 lines (35 loc) · 970 Bytes
/
Copy pathWildCards.java
File metadata and controls
41 lines (35 loc) · 970 Bytes
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
import java.util.Iterator;
import java.util.List;
public class WildCards {
public static void main(String[] args) {
List<String> list1 = null;
List<Object> list2 = null;
// list 1 and list2 are not related, but they both are subclass of List<?>
List<?> list = null;
list = list1;
list = list2;
print(list1);
print(list2);
}
// @Test
// public void test() {
// List<String> list1 = null;
// List<Object> list2 = null;
//
// // list 1 and list2 are not related, but they both are subclass of List<?>
//
// List<?> list = null;
// list = list1;
// list = list2;
//
// print(list1);
// print(list2);
// }
public static void print(List<?> list){
Iterator<?> iterator = list.iterator();
while(iterator.hasNext()){
Object next = iterator.next();
System.out.println(next);
}
}
}