I've been studying PECS in Java for a bit.
I understand that S super T means a type T which is a subclass of S. Isn't that the equivalent of T extends S? Are those two statements interchangable?
If they aren't, why?
//Edit:
I haven't written code with those yet so I'm not 100% on the syntax.
Let's say I have ? super T (I have just seen an example with this). Can't I re-write this as T extends ? ?