Tagged Questions
Covariance, contravariance and invariance describe how the existing type inheritance hierarchy changes when subjected to some transformation (such as usage within generics). If the transformation keeps the ordering of the original hierarchy, it is "covariant". If it reverses it, it is "contravariant". If it breaks it, it is "invariant".
43
votes
5answers
907 views
Difference between covariance and upcasting
What is the difference between covariance and upcasting, or, more specifically, why are they given different names?
I've seen the following example referred to as 'upcasting':
string s = "hello";
...
41
votes
4answers
15k views
How is Generic Covariance & Contra-variance Implemented in C# 4.0?
I didn't attend PDC 2008, but I heard some news that C# 4.0 is announced to support Generic covariance and contra-variance. That is, List<string> can be assigned to List<object>. How could ...
36
votes
7answers
847 views
Why doesn't this generic extension method compile?
The code is a little weird, so bear with me (keep in mind this scenario did come up in production code).
Say I've got this interface structure:
public interface IBase { }
public interface IChild : ...
33
votes
12answers
37k views
In C#, why can't a List<string> object be stored in a List<object> variable
It seems that a List object cannot be stored in a List variable in C#, and can't even be explicitly cast that way.
List<string> sl = new List<string>();List<object> ol;ol = sl;
results ...
25
votes
3answers
817 views
Co- and Contravariance bugs in .NET 4.0
Some strange behavior with the C# 4.0 co- and contravariance support:
using System;
class Program {
static void Foo(object x) { }
static void Main() {
Action<string> action = _ => { ...
25
votes
3answers
1k views
Why is Scala's immutable Set not covariant in its type?
EDIT: Re-written this question based on original answer
The scala.collection.immutable.Set class is not covariant in its type parameter. Why is this?
import scala.collection.immutable._
def foo(s: ...
23
votes
3answers
703 views
Why was IEnumerable<T> made covariant in C# 4?
In earlier versions of C# IEnumerable was defined like this:
public interface IEnumerable<T> : IEnumerable
Since C# 4 the definition is:
public interface IEnumerable<out T> : ...
19
votes
2answers
536 views
Is this a covariance bug in C# 4?
In the following piece of code I expected to be able to implicitly cast from elements to baseElements because TBase is implicitly convertible to IBase.
public interface IBase { }
public interface ...
19
votes
5answers
2k views
C# : Is Variance (Covariance / Contravariance) another word for Polymorphism?
I am trying to figure out the exact meaning of the words Covariance and Contravariance from several articles online and questions on StackOverflow, and from what I can understand, it's only another ...
18
votes
8answers
3k views
C#: Overriding return types
Is there way to override return types in C#? If so how, and if not why and what is a recommended way of doing it?
My case is that I have an interface with an abstract base class and descendants of ...
17
votes
4answers
279 views
Does I<D> re-implement I<B> if I<D> is convertible to I<B> by variance conversion?
interface ICloneable<out T>
{
T Clone();
}
class Base : ICloneable<Base>
{
public Base Clone() { return new Base(); }
}
class Derived : Base, ICloneable<Derived>
{
new ...
17
votes
6answers
2k views
When is C++ covariance the best solution?
This question was asked here a few hours ago and made me realise that
I have never actually used covariant return types in my own code. For those
not sure what covariance is, it's allowing the return ...
15
votes
6answers
1k views
Difference between Covariance & Contra-variance
I am having trouble understanding the difference between covariance and contravariance.
My understanding is one supports out, as in "action" with no return type, which is casting to. The other ...
15
votes
3answers
722 views
IDictionary<TKey, TValue> in .NET 4 not covariant
The IDictionary<TKey, TValue> in .NET 4 / Silverlight 4 does not support covariance, i.e. I can't do a
IDictionary<string, object> myDict = new Dictionary<string, string>();
...
14
votes
13answers
2k views
Any simple way to explain why I cannot do List<Animal> animals = new ArrayList<Dog>()?
I know why one shouldn't do that. But is there way to explain to a layman why this is not possible. You can explain this to a layman easily : Animal animal = new Dog();. A dog is a kind of animal but ...
14
votes
3answers
1k views
Generic Variance in C# 4.0
Generic Variance in C# 4.0 has been implemented in such a way that it's possible to write the following without an exception (which is what would happen in C# 3.0):
List<int> intList = new ...
14
votes
4answers
1k views
Contravariance explained
First of, I have read many explanations on SO and blogs about covariance and contravariance and a big thanks goes out to Eric Lippert for producing such a great series on Covariance and ...
14
votes
3answers
5k views
Scala covariance / contravariance question
Following on from this question, can someone explain the following in Scala:
class Slot[+T] (var some: T) {
// DOES NOT COMPILE
// "COVARIANT parameter in CONTRAVARIANT position"
}
I ...
13
votes
5answers
225 views
Selectively disable subsumption in Scala? (correctly type List.contains)
List("a").contains(5)
Because an Int can never be contained in a list of String, this should generate an error at compile-time, but it does not.
It wastefully and silently tests every String ...
13
votes
5answers
1k views
Why do we need new keywords for Covariance and Contravariance in C#?
Can someone explain why there is the need to add an out or in parameter to indicate that a generic type is Co or Contra variant in C# 4.0?
I've been trying to understand why this is important and why ...
12
votes
2answers
280 views
Covariance and IList
I would like a Covariant collection whose items can be retrieved by index. IEnumerable is the only .net collection that I'm aware of that is Covariant, but it does not have this index support.
...
12
votes
1answer
309 views
Question about C# 4.0's generics covariance
Having defined this interface:
public interface IInputBoxService<out T> {
bool ShowDialog();
T Result { get; }
}
Why does the following code work:
public class StringInputBoxService ...
12
votes
7answers
2k views
Covariance and contravariance in programming languages
Can anyone explain me, the concept of covariance and contravariance in
programming languages theory?
11
votes
3answers
369 views
still confused about covariance and contravariance & in/out
ok i read a bit on this topic on stackoverflow, watched this & this, but still a bit confused about co/contra-variance.
from here
Covariance allows a "bigger" (less
specific) type to be ...
10
votes
2answers
286 views
Autofac: Hiding multiple contravariant implementations behind one composite
I was triggered by this SO question about (.NET 4.0) covariance and contravariance support for Autofac, and now I'm trying to achieve something similar, but without any luck.
What I am trying to ...
10
votes
3answers
161 views
Question about generics in C# comparing to Java
In Java I can specify generic with wildcard "?". It is possible to create a map like this one:
Map<String, ?>.
I'm working with C# and I need a Dictionary<String, SomeInterface<?>> ...
10
votes
4answers
316 views
C++ How do I pass a list of non-consts to a function wanting a list of consts
I have a function with a signature
void Foo(list<const A*>)
and I want to pass it a
list<A*>
How do I do this?
(plz note - the list isn't constant, only the member of the list)
10
votes
3answers
269 views
Interfaces inheritance in C#
I'm trying to overrun quite big (for me) problem that I came across while writing my application.
Look at this, please (I will try to shorten the code for simplicity):
I have root interface called ...
10
votes
3answers
171 views
C# compiler fails to recognize a class is implementing an interface
The following code fails to compile (using VS2010) and I don't see why. The compiler should be able to infer that List<TestClass> is 'compatible' (sorry for lack of a better word) with ...
10
votes
2answers
645 views
In C# 4.0 why can't an out parameter in a method be covariant?
Given this magical interface:
public interface IHat<out TRabbit>
{
TRabbit Take();
}
And this class hierarchy:
public class Rabbit { }
public class WhiteRabbit : Rabbit { }
I can now ...
10
votes
5answers
2k views
How can I use covariant return types with smart pointers?
I have code like this:
class RetInterface {...}
class Ret1: public RetInterface {...}
class AInterface
{
public:
virtual boost::shared_ptr<RetInterface> get_r() const = 0;
...
};
...
10
votes
9answers
2k views
how get a vector<Derived*> into a function that expects a vector<Base*> as argument
Consider these classes,
class Base
{
...
};
class Derived : public Base
{
...
};
this function
void BaseFoo( std::vector<Base*>vec )
{
...
}
And finally my vector
...
9
votes
2answers
112 views
About Generics and Inheritance (forgive my bad title)
As I don't know how my problem is called, I cannot guarantee, that nobody has asked the same question recently or at all.
I did notice, however that there are quite a few threads with a similar ...
9
votes
3answers
121 views
generics covariance and explicit casting
If I try and do:
IDictionary<uint, IEnumerable<string>> dict = new Dictionary<uint, List<string>>();
I get the error:
error CS0266: Cannot implicitly convert type
...
9
votes
2answers
841 views
Real-world examples of co- and contravariance in Scala
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.
9
votes
4answers
285 views
Container covariance in C++
I know that C++ doesn't support covariance for containers elements, as in Java or C#. So the following code probably is undefined behavior:
#include <vector>
struct A {};
struct B : A {};
...
9
votes
5answers
544 views
Simple examples of co and contravariance
Could someone provide me simple C# examples of convariance, contravariance, invariance and contra-invariance (if such thing exists).
All samples I've seen so far was just casting some object into ...
9
votes
3answers
385 views
Why generic interfaces are not co/contravariant by default?
For example IEnumerable<T> interface:
public interface IEnumerable<out T> : IEnumerable
{
IEnumerator<T> GetEnumerator();
}
In this interface the generic type is used only as ...
9
votes
3answers
276 views
Why is C# 4.0's covariance/contravariance limited to parameterized interface and delegate types?
Is this a limitation of the CLR or are there compatibility concerns with existing code?
Is this related to the messed up variance of delegate combining in C# 4.0?
Edit:
Would it be possible to have ...
9
votes
5answers
1k views
Understanding Covariance and Contravariance in C# 4.0
I watched a video about it on Channel 9 but I didn't really understand it much.
Can someone please give me a simple example about these that's easy to understand? After that maybe how it would be ...
9
votes
5answers
611 views
What are the benefits of covariance and contravariance?
C# 4.0 is going to support covariance and contravariance. But I don't clearly understand the benefits of this new feature. Can you explain me (clearly) why we need it?
9
votes
6answers
1k views
C++ covariant templates
I feel like this one has been asked before, but I'm unable to find it on SO, nor can I find anything useful on Google. Maybe "covariant" isn't the word I'm looking for, but this concept is very ...
9
votes
8answers
6k views
C# Can I Override with derived types?
As far as i know it is not possible to do the following in C# 2.0
public class Father
{
public virtual Father SomePropertyName
{
get
{
return this;
}
...
8
votes
3answers
235 views
howto initialize covariant variable?
class C [+T] {
var v : T = _
}
compiler error: covariant type T occurs in contravariant position in type T of value value_=
why? how i can fix it?
8
votes
3answers
118 views
Wildcards in C# generic constraints
I'm aware that C# doesn't have generic wildcards, and that a similar effect can be achieved by generic methods, but I need to use a wildcard in a field and can't work out if there is any way to encode ...
8
votes
3answers
87 views
How to deal with covariance when returning collection in c#?
I have a problem with returning collection and covariance and I was wondering if anyone has a better solution.
The scenario is this:
I have 2 version of implementation and I would like to keep the ...
8
votes
6answers
157 views
covariant return types with multiple inheritance. how does this code work?
Can anyone tell me how does return type covariance work in the following code?
class X
{
public:
int x;
};
class Y: public OtherClass, public X
{
};
static Y inst;
class A {
public:
...
8
votes
1answer
331 views
covariance and contravariance considerations when designing
Inspired by Real-world examples of co- and contravariance in Scala I thought a better question would be:
When designing a library, are there a specific set of questions you should ask yourself when ...
8
votes
2answers
228 views
I really don't understand this co/contravariance thing… I cannot have both generic get and set methods?
I think I'll explain my problems with some examples..
interface IModel {}
class MyModel : IModel {}
interface IRepo<T> where T: IModel {
}
class Repo : IRepo<MyModel> {
}
// Cannot ...
8
votes
9answers
603 views
How do I convert from List<?> to List<T> in Java using generics?
In Java, how do I convert List<?> to List<T> using a general purpose method so that I can replace patterns like the following with a single method call:
List untypedList = new ...