2015-09-07 11:44:36 -06:00
|
|
|
|
// containers/GenericsAndUpcasting.java
|
2015-11-14 16:18:05 -08:00
|
|
|
|
// <20>2016 MindView LLC: see Copyright.txt
|
2015-06-15 17:47:35 -07:00
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
class GrannySmith extends Apple {}
|
|
|
|
|
class Gala extends Apple {}
|
|
|
|
|
class Fuji extends Apple {}
|
|
|
|
|
class Braeburn extends Apple {}
|
|
|
|
|
|
|
|
|
|
public class GenericsAndUpcasting {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
ArrayList<Apple> apples = new ArrayList<>();
|
|
|
|
|
apples.add(new GrannySmith());
|
|
|
|
|
apples.add(new Gala());
|
|
|
|
|
apples.add(new Fuji());
|
|
|
|
|
apples.add(new Braeburn());
|
|
|
|
|
for(Apple c : apples)
|
|
|
|
|
System.out.println(c);
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|
|
|
|
|
/* Output:
|
2015-06-15 17:47:35 -07:00
|
|
|
|
GrannySmith@19e0bfd
|
|
|
|
|
Gala@139a55
|
|
|
|
|
Fuji@1db9742
|
|
|
|
|
Braeburn@106d69c
|
2015-09-07 11:44:36 -06:00
|
|
|
|
*/
|