2015-09-07 11:44:36 -06:00
|
|
|
// generics/UnboundedWildcards1.java
|
2021-01-31 15:42:31 -07:00
|
|
|
// (c)2021 MindView LLC: see Copyright.txt
|
2015-11-15 15:51:35 -08:00
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
2016-09-23 13:23:35 -06:00
|
|
|
// Visit http://OnJava8.com for more book information.
|
2015-06-15 17:47:35 -07:00
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
public class UnboundedWildcards1 {
|
|
|
|
static List list1;
|
|
|
|
static List<?> list2;
|
|
|
|
static List<? extends Object> list3;
|
|
|
|
static void assign1(List list) {
|
|
|
|
list1 = list;
|
|
|
|
list2 = list;
|
2016-01-25 18:05:55 -08:00
|
|
|
//- list3 = list;
|
|
|
|
// warning: [unchecked] unchecked conversion
|
|
|
|
// list3 = list;
|
|
|
|
// ^
|
|
|
|
// required: List<? extends Object>
|
|
|
|
// found: List
|
2015-06-15 17:47:35 -07:00
|
|
|
}
|
|
|
|
static void assign2(List<?> list) {
|
|
|
|
list1 = list;
|
|
|
|
list2 = list;
|
|
|
|
list3 = list;
|
|
|
|
}
|
|
|
|
static void assign3(List<? extends Object> list) {
|
|
|
|
list1 = list;
|
|
|
|
list2 = list;
|
|
|
|
list3 = list;
|
|
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
|
|
assign1(new ArrayList());
|
|
|
|
assign2(new ArrayList());
|
2016-01-25 18:05:55 -08:00
|
|
|
//- assign3(new ArrayList());
|
|
|
|
// warning: [unchecked] unchecked method invocation:
|
|
|
|
// method assign3 in class UnboundedWildcards1
|
|
|
|
// is applied to given types
|
|
|
|
// assign3(new ArrayList());
|
|
|
|
// ^
|
|
|
|
// required: List<? extends Object>
|
|
|
|
// found: ArrayList
|
|
|
|
// warning: [unchecked] unchecked conversion
|
|
|
|
// assign3(new ArrayList());
|
|
|
|
// ^
|
|
|
|
// required: List<? extends Object>
|
|
|
|
// found: ArrayList
|
|
|
|
// 2 warnings
|
2015-06-15 17:47:35 -07:00
|
|
|
assign1(new ArrayList<>());
|
|
|
|
assign2(new ArrayList<>());
|
|
|
|
assign3(new ArrayList<>());
|
|
|
|
// Both forms are acceptable as List<?>:
|
|
|
|
List<?> wildList = new ArrayList();
|
|
|
|
wildList = new ArrayList<>();
|
|
|
|
assign1(wildList);
|
|
|
|
assign2(wildList);
|
|
|
|
assign3(wildList);
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
}
|