5
votes
2answers
51 views
Java snippet that causes stack overflow in the compiler or typechecker (javac)?
Yesterday at a seminar the presenter showed a small java program, with 3 classes, featuring both co-variance and contra-variance. When attempting to compile using javac, the type checker will throw a …
4
votes
4answers
130 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 …
5
votes
5answers
484 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 …
1
vote
4answers
217 views
How to declare a method that returns a generic collection of “anything” (C#)
I am using a hierarchy of generic collection classes that derive from an abstract base class to store entity items that also derive from an abstract base class:
abstract class ItemBase { }
class …
2
votes
2answers
115 views
Why are ref parameters not contravariant?
This works:
EndPoint endPoint = new IPEndPoint(_address, _port);
_socket.ReceiveFrom(buffer, 0, 1024, SocketFlags.None, ref endPoint);
But this does not:
IPEndPoint endPoint = new …
4
votes
2answers
126 views
IList using covariance and contravariance in c#, is this possible?
Hi all
would this be possible? (I don't have vs. 2010, so I can't try it myself, sorry)
public interface IComplexList<out TOutput, in TInput> where TOutput : TInput
{
public …
8
votes
5answers
231 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?
2
votes
3answers
146 views
Co-/contravariance support for non-generic types?
I wonder why the C# team decided not to support co-/contravariance for non-generics, considering they could be just as safe. The question is rather subjective, as I don't expect a team member to …
3
votes
3answers
2k 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 …
6
votes
17answers
689 views
Why doesn’t inheritance work the way I think it should work?
I'm having some inheritance issues as I've got a group of inter-related abstract classes that need to all be overridden together to create a client implementation. Ideally I would like to do …
6
votes
3answers
195 views
Type variance in .NET Framework 4.0
IEnumerable<T>, IComparable<T> and a few more are now type-variant. IList<T>, ICollection<T> and many others aren't. Why?
1
vote
2answers
333 views
How to make a generic class with inheritance?
How can I make the following code work? I don't think I quite understand C# generics. Perhaps, someone can point me in the right direction.
public abstract class A
{
}
public class …
3
votes
3answers
528 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 …
2
votes
2answers
389 views
Generic wildcards in variable declarations in Scala
In Java I might do this:
class MyClass {
private List<? extends MyInterface> list;
public void setList(List<MyImpl> l) { list = l; }
}
...assuming that (MyImpl implements …
0
votes
3answers
122 views
Why is conversion between with different type parameters is NOT allowed?
I just don't get it as it would be so useful to convert one generic container into the other?
Stack <IType> stack = new Stack<SomeType>();
