Java 1.5 onwards we have support for Generics which allows defining Collections to hold special types of objects like List<String> list;
instead of List list;
,
Why did Sun chose to name this as "Generics" even though it specializes the behavior in which collections are used?
Because it allows you to write generic classes, that can hold generic data types, which are only specialized when the class is actually instantiated.
List<String>
is indeed a specialization, but the only class that has been written isList<E>
, which is generic.