I'm coming from a c# background, how do generics look in java compared to c#? (basic usage)
|
|
That's a pretty huge question, to be honest - the biggest differences aren't in syntax, but in behaviour... at which point they're really, really different. I would suggest you read through the Sun generics tutorial and Angelika Langer's Java Generics FAQ. Forget everything you know about generics from C#/.NET first though. In particular, while .NET generic types retain the type argument at execution time, Java generics don't due to type erasure. So in other words, in C# you can write:
... you can't do this in Java :( Additionally, .NET generics can have value type type arguments, whereas Java generics can't (so you have to use Those are probably the two biggest differences, but it's well worth trying to learn Java generics from scratch instead of as a "diff" from C#. |
|||
|
|
|
There are a number of articles about this, but there's one notable example that discusses some of the differences and limitations of generics in Java. Here is a simple example taken from the existing Collections tutorial:
Here is the same example modified to use generics:
|
|||
|
|