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.
|
|
||||
|
|
|
The classic example is functions, taking the Scala interface for a function with a single argument:
Which is contravariant for the argument, and covariant for the return type. Why? Imagine you have these two classes:
If you have a method that takes, as a parameter, a function from So Likewise, a function returning a
|
||||
|
|
|
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. |
|||||||
|