Can someone explain why the following doesn't work? It complains that:
The method add(C) in the type List is not applicable for the arguments (Generics.Person)
import java.util.ArrayList;
import java.util.List;
public class Generics<C extends Comparable<C>> {
static class Person implements Comparable<Person> {
public final String name, city;
public Person(String name, String city) {
this.name = name;
this.city = city;
}
@Override
public int compareTo(Person that) {
return 0;
}
}
public Generics() {
List<C> persons = new ArrayList<C>();
persons.add(new Person(null, null));
}
// however, this one works, but it gives a warning
// about Comparable being a raw type
public Generics() {
List<Comparable> persons = new ArrayList<Comparable>();
persons.add(new Person(null, null));
}
}
So, basically, what I want is a generic List of Comparables, to which I can add any type that implements Comparable.