What is the difference between <E extends Number> and <Number>?
- by kunjaan
What is the difference between this method declaration:
public static <E extends Number> List<E> process(List<E> nums){
and
public static List<Number> process(List<Number> nums){
Where would you use the former?