OnJava8-Examples/generics/GenericReading.java

44 lines
1.3 KiB
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: generics/GenericReading.java
2015-05-29 14:18:51 -07:00
// <20>2015 MindView LLC: see Copyright.txt
2015-04-20 15:36:01 -07:00
import java.util.*;
public class GenericReading {
static <T> T readExact(List<T> list) {
return list.get(0);
}
static List<Apple> apples = Arrays.asList(new Apple());
static List<Fruit> fruit = Arrays.asList(new Fruit());
// A static method adapts to each call:
static void f1() {
Apple a = readExact(apples);
Fruit f = readExact(fruit);
f = readExact(apples);
}
// If, however, you have a class, then its type is
// established when the class is instantiated:
static class Reader<T> {
T readExact(List<T> list) { return list.get(0); }
2015-05-18 23:05:20 -07:00
}
2015-04-20 15:36:01 -07:00
static void f2() {
2015-05-05 11:20:13 -07:00
Reader<Fruit> fruitReader = new Reader<>();
2015-04-20 15:36:01 -07:00
Fruit f = fruitReader.readExact(fruit);
// Fruit a = fruitReader.readExact(apples); // Error:
// readExact(List<Fruit>) cannot be
// applied to (List<Apple>).
}
static class CovariantReader<T> {
T readCovariant(List<? extends T> list) {
return list.get(0);
}
}
static void f3() {
CovariantReader<Fruit> fruitReader =
2015-05-05 11:20:13 -07:00
new CovariantReader<>();
2015-04-20 15:36:01 -07:00
Fruit f = fruitReader.readCovariant(fruit);
Fruit a = fruitReader.readCovariant(apples);
2015-05-18 23:05:20 -07:00
}
2015-04-20 15:36:01 -07:00
public static void main(String[] args) {
f1(); f2(); f3();
}
} ///:~