Unchecked Example : Generic Collection « Generics « Java






Unchecked Example

   
import java.util.*;

public class UncheckedExample {
    public void processIntVector(Vector<Integer> v)
    {
        // perform some processing on the vector
    }

    public static void main(String args[])
    {
        Vector<Integer> intVector = new Vector<Integer>();
        Vector oldVector = new Vector();
        UncheckedExample ue = new UncheckedExample();

        // This is permitted
        oldVector = intVector;
        // This causes an unchecked warning
        intVector = oldVector;
        // This is permitted
        ue.processIntVector(intVector);
        // This causes an unchecked warning
        ue.processIntVector(oldVector);
    }
}
           
         
    
    
  








Related examples in the same category

1.Creating a Type-Specific List
2.A list declared to hold objects of a type T can also hold objects that extend from T.
3.A value retrieved from a type-specific list does not need to be casted
4.Generic ArrayListGeneric ArrayList
5.Generic Data Structure
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