Mega Code Archive
Categories
/
Java
/
Generics
Boxing Generic Example
import java.util.*; public class BoxingGenericsExample { public static void main(String args[]) { HashMap
hm = new HashMap
(); hm.put("speed", 20); } }