Boxing Generic Example : Generic Parameter « Generics « Java






Boxing Generic Example

 
import java.util.*;

public class BoxingGenericsExample {
    public static void main(String args[])
    {
        HashMap<String,Integer> hm = new HashMap<String,Integer>();

        hm.put("speed", 20);
    }
}

           
         
  








Related examples in the same category

1.A simple generic class with two type parameters: T and V.A simple generic class with two type parameters: T and V.
2.Java generic: Hierarchy argumentJava generic: Hierarchy argument
3.Demonstrate a raw generic type. Demonstrate a raw generic type.
4.T is a type parameter that will be replaced by a real type when an object of type Gen is created.
5.Create a generic class that can compute the average of an array of numbers of any given type.
6.the type argument for T must be either Number, or a class derived from Number.
7.Demonstrate a raw type.
8.A subclass can add its own type parameters.
9.Compare two generic parameters
10.Default implementation of {@link java.lang.reflect.ParameterizedType}
11.Get the Generic definition from a class for given class with given index.