Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I came across PECS (short for Producer extends and Consumer super) while reading on Generics.

Can someone explain to me how to use PECS to resolve confusion between extends and super?

Thanks in advance!

share|improve this question
5  
@peakit: don't put too much faith and time in Java generics. I'll spoil the fun for you: CaseInPoint extends Handable<Scalpel>, Handable<Sponge>. KABOOM! There's your generics limitation. Java generics are NOT a valid substitute for parametric polymorphism. They only work for the simplest inheritance case. Granted, for people doing procedural programming in Java and for the "collections" they're great. But from an OO standpoint, they're broken beyond repair. – SyntaxT3rr0r Apr 28 '10 at 6:55
@SyntaxT3rr0r, could you please give references on the topic? – damluar Aug 24 '12 at 10:41

2 Answers

up vote 145 down vote accepted

Suppose you have a method that takes as its parameter a collection of things, but you want it to be more flexible than just accepting a Collection<Thing>.

Case 1: You want to go through the collection and do things with each item.
Then the list is a producer, so you should use a Collection<? extends Thing>.

The reasoning is that a Collection<? extends Thing> could hold any subtype of Thing, and thus each element will behave as a Thing when you perform your operation. (You actually cannot add anything to a Collection<? extends Thing>, because you cannot know at runtime which specific subtype of Thing the collection holds.)

Case 2: You want to add things to the collection.
Then the list is a consumer, so you should use a Collection<? super Thing>.

The reasoning here is that unlike Collection<? extends Thing>, Collection<? super Thing> can always hold a Thing no matter what the actual parameterized type is. Here you don't care what is already in the list as long as it will allow a Thing to be added; this is what ? super Thing guarantees.

share|improve this answer
8  
epic explanation. – Justin Apr 27 '10 at 17:51
5  
+1, very nice explanation - the icing being that if the method does both cases, one can't make it more flexible than Collection of Thing. – Carl Apr 27 '10 at 18:11
I'm confused, it seems like your answer is backwards according to your definition. If I'm adding to a collection, am I not producing? And therefore want to use super? – Snekse Apr 7 '11 at 18:53
18  
@Snekse: It's from the point of view of the collection. If you are adding to a collection, then the collection is a consumer. – Michael Myers Apr 7 '11 at 19:19
I'm always trying to think about it this way: A producer is allowed to produce something more specific, hence extends, a consumer is allowed to accept something more general, hence super. – Feuermurmel May 7 at 13:11

See my answer to another question here. I think it answers your question pretty well. Note that generally you should only be using ? extends T and ? super T for the parameters of some method. Methods should just use T as the type parameter on a generic return type.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.