What is a parameterized reference in Java?
- by Emanuil
Why the following line of code:
private static List list = new ArrayList<String>();
... generates the following warning:
List is a raw type. References to
generic type List should be
parameterized.