can anyone explain what Comparable<? super T> means
In simple wordings it does mean that it is not must that class T implements
the Comparable interface. If super class of that implements the Comparable
it will also do.
In your case you experiment with what I say:
1- First try by making your Dvd class implement Comparable interface.
2- After that you make a new class and extend the Dvd class from that.
Parent class of Dvd class should implement the Comparable this time so
that you could
test the meaning of
Comparable<? super T> Regards,
cmbhatt