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

I know about using co- and contravariance in the standard library (e.g. collections and trait Function) I wonder how co- and contravariance are used in design of "real world" business applications.

share|improve this question

2 Answers

The classic example is functions, taking the Scala interface for a function with a single argument:

trait Function1[-T1, +R]

Which is contravariant for the argument, and covariant for the return type.

Why?

Imagine you have these two classes:

class Super { ... }
class Sub extends Super

If you have a method that takes, as a parameter, a function from Sub to some type X, then it's okay to use a function from Super to X, it'll still accept instances of Sub.

So A => X is a subclass of B => X if A is a superclass of B, it's contravariant.

Likewise, a function returning a Sub is valid when you need a function returning a Super, because a Sub is-a Super

X => C is a subclass of X => D if C is a subclass of D, it's covariant.

share|improve this answer

Essentially anywhere where you want to make use of both parametric polymorphism and inheritance, you will probably end up wanting either declaration site variance, use site variance, or more likely, both.

Polymorphic types are usually fairly high-level abstractions, so while your domain objects may not need variance annotations, it's likely that code that you write to manipulate your domain objects will need to use variance annotations, at least if your domain objects are part of inheritance hierarchies, which seems very frequent.

If you take a look at essentially any library or framework, you'll find frequent use of variance annotations. If you're abstracting your "real world" application correctly, you'll probably be writing lots of libraries to support it, with a small core of critical business logic nicely decoupled from all of the support infrastructure. All that support infrastructure will probably make frequent use of variance annotations, too.

share|improve this answer
3  
..........What? – Ben Jackson Mar 11 '11 at 23:40
@Ben ......Who? – Kevin Wright Mar 12 '11 at 16:29

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.