A list declared to hold objects of a type T can also hold objects that extend from T. : Generic Collection « Generics « Java






A list declared to hold objects of a type T can also hold objects that extend from T.

    

import java.util.ArrayList;
import java.util.List;

public class Main {
  public static void main(String[] argv) {

    List<Number> numlist = new ArrayList<Number>();

    numlist.add(new Integer(123));
    numlist.add(new Float(123));
  }
}

   
    
    
    
  








Related examples in the same category

1.Creating a Type-Specific List
2.A value retrieved from a type-specific list does not need to be casted
3.Generic ArrayListGeneric ArrayList
4.Generic Data Structure
5.Unchecked Example
6.Generic StackGeneric Stack
7.Enum and GenericEnum and Generic
8.Generic HashMapGeneric HashMap
9.Foreach and generic data structureForeach and generic data structure
10.Pre generics example that uses a collection.Pre generics example that uses a collection.
11.Data structure and collections: Modern, generics version.Data structure and collections: Modern, generics version.
12.Java generic: Generics and arrays.
13.Collections and Data structure: the generic wayCollections and Data structure: the generic way
14.The GenStack Class
15.Create a typesafe copy of a raw set.
16.Create a typesafe copy of a raw list.
17.Create a typesafe copy of a raw map.
18.Create a typesafe filter of an unchecked iterator.
19.Create a typesafe view over an underlying raw set.
20.Create a typesafe view over an underlying raw map.
21.Create a typesafe filter of an unchecked enumeration.
22.Circular Object Buffer
23.A collection that do not hold stored elements in memory, but serialize it into a file
24.Generic Triple structure
25.Generic Pair
26.A generic bag of properties used to store properties that apply to a specific target.
27.Pool container