Why Generics (in Java) works with the objects but not with primitive types?
For example
Gen<Integer> inum = new Gen<Integer>(100); // works fine, but
Gen<int> inums = new Gen<int>(100); // is not allowed.
|
|
Generics in Java are an entirely compile-time construct - the compiler turns all generic uses into casts to the right type. This is to maintain backwards compatibility with previous JVM runtimes. This:
gets turned into (roughly):
So, anything that is used as generics has to be convertable to Object (in this example C# is a separate matter - generics are implemented directly as part of the runtime, so primitive types can be used - the CLR generates new versions of generic classes for primitives and structs as they are used. The only disadvantage is (until .NET 4) no generic covariance or contravariance was allowed, unlike Java (see the |
|||||||||||||||
|
|
In Java, generics work the way that they do ... at least in part ... because they were added to the language a number of years after the language was designed. The language designers were constrained in their options for generics by having to come up with a design that was backwards compatible with the existing language and the Java class library. Other programming languages (e.g. C++, C#, Ada) do allow primitive types to be used as parameter types for generics. But the flip side of doing this is that such languages' implementations of generics (or template types) typically entail generation of a distinct copy of the generic type for each type parameterization. |
||||
|
|
|
THe collections are defined to require a type which derives from |
|||
|
|
|
For C# I do not see a problem here. |
|||
|
|