Tagged Questions
45
votes
11answers
2k views
Why should I care that Java doesn't have reified generics?
This came up as a question I asked in an interview recently as something the candidate wished to see added to the Java language. It's commonly-identified as a pain that Java doesn't have reified ...
6
votes
1answer
280 views
What are the limitations of Scala's Manifests?
Scala's Manifests are a way to get around some type erasure problems due to the JVM's lack of reified generics.
They are discussed in several other questions; here are a few:
What is a Manifest in ...
4
votes
3answers
355 views
Scala: Method overloading over generic types
In C# I can overload methods on generic type as shown in the example below:
// http://ideone.com/QVooD
using System;
using System.Collections.Generic;
public class Test {
public static void ...
4
votes
4answers
204 views
How does C# generics affect collections with primitives
As I understand it, C#/.Net generics support some degree of reification. So, if I have the following code:
List<int> list = new List<int>();
list.Add(1);
Will the value 1 be autoboxed ...
4
votes
2answers
2k views
Casting to a Class which is determined at run-time
I have a method fetchObjects(String) that is expected to return an array of Contract business objects. The className parameter tells me what kind of business objects I should return (of course this ...
3
votes
3answers
670 views
Any word on reified generics in Java?
I know this question will probably provoke more discussion than concrete answers (which I know isn't preferable). But with the recent acquisition by Oracle, I was wondering if there's been any word ...