up vote 45 down vote favorite
12
share [g+] share [fb]

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 generics but, when pushed, the candidate couldn't actually tell me the sort of things that he could have achieved were they there.

Obviously because raw types are allowable in Java (and unsafe checks), it is possible to subvert generics and end up with a List<Integer> that (for example) actually contains Strings. This clearly could be rendered impossible were type information reified; but there must be more than this!

Could people post examples of things that they would really want to do, were reified generics available? I mean, obviously you could get the type of a List at runtime - but what would you do with it?

public <T> void foo(List<T> l) {
   if (l.getGenericType() == Integer.class) {
       //yeah baby! err, what now?

EDIT: A quick update to this as the answers seem mainly to be concerned about the need to pass in a Class as a parameter (for example EnumSet.noneOf(TimeUnit.class)). I was looking more for something along the lines of where this just isn't possible. For example:

List<?> l1 = api.gimmeAList();
List<?> l2 = api.gimmeAnotherList();

if (l1.getGenericType().isAssignableFrom(l2.getGenericType())) {
    l1.addAll(l2); //why on earth would I be doing this anyway?
link|improve this question

Would this mean that you could get the class of a generic type at runtime? (if so, I have an example!) – James B Dec 18 '09 at 11:58
@James B basically. – Hank Gay Dec 18 '09 at 12:02
I think most of the desire with reifiable generics are from people who use generics primarily with collections, and want those collections to behave more like arrays. – kdgregory Dec 18 '09 at 14:51
1  
The more interesting question (to me): what would it take to implement C++ style generics in Java? It certainly seems do-able in the runtime, but would break all existing classloaders (because findClass() would have to ignore parameterization, but defineClass() couldn't). And as we know, The Powers That Be hold backwards compatibility paramount. – kdgregory Dec 18 '09 at 15:01
feedback

11 Answers

up vote 29 down vote accepted

From the few times that I came across this "need", it ultimately boils down to this construct:

public class Foo<T> {

    private T t;

    public Foo() {
        this.t = new T(); // Help?
    }

}

This does work in C# assuming that T has a default constructor. You can even get the runtime type by typeof(T) and get the constructors by Type.GetConstructor().

The common Java solution would be to pass the Class<T> as argument.

public class Foo<T> {

    private T t;

    public Foo(Class<T> cls) throws Exception {
        this.t = cls.newInstance();
    }

}

(it does not necessarily need to be passed as constructor argument, as a method argument is also fine, the above is just an example, also the try-catch is omitted for brevity)

link|improve this answer
3  
This works (for example) in C#? How do you know that T has a default constructor? – Thomas Jung Dec 18 '09 at 12:11
2  
Yes, it do. And this is just a basic example (let assume that we work with javabeans). The whole point is that with Java you cannot get the class during runtime by T.class or T.getClass(), so that you could access all its fields, constructors and methods. It makes construction also impossible. – BalusC Dec 18 '09 at 12:20
Well, there are workarounds for that. But they're ugly. – Bozho Dec 18 '09 at 12:25
This would use reflection APIs: T.class.newInstance(). Otherwise you would have to add the type information for T. It has to be a class with such and such constructor. – Thomas Jung Dec 18 '09 at 12:27
11  
It does compile in C# provided that you declare the type as: public class Foo<T> where T : new(). Which will limit the valid types of T to those that contain a parameterless constructor. – Martin Harris Dec 18 '09 at 12:55
show 9 more comments
feedback

The thing that most commonly bites me is the inability to take advantage of multiple dispatch across multiple generic types. The following isn't possible and there are many cases where it would be the best solution:

public void my_method(List<String> input) { ... }
public void my_method(List<Integer> input) { ... }
link|improve this answer
Yes - that's a really good point; this comes up a lot – oxbow_lakes Dec 18 '09 at 12:36
1  
There is absolutely no need for reification to be able to do that. Method selection is done at compile time when the compile-time type information is available. – Tom Hawtin - tackline Dec 18 '09 at 13:25
3  
@Tom: this doesn't even compile because of type erasure. Both get compiled as public void my_method(List input) {}. I have however never came across this need, simply because they would not have the same name. If they have the same name, I'd question if public <T extends Object> void my_method(List<T> input) {} isn't a better idea. – BalusC Dec 18 '09 at 13:51
Hm, I would tend to avoid overloading with identical number of parameters altogether, and prefer something like myStringsMethod(List<String> input) and myIntegersMethod(List<Integer> input) even if overloading for such a case was possible in Java. – Fabian Steeg Dec 18 '09 at 14:58
@Fabian: Which means you've got to have separate code, and prevent the sort of advantages you get from <algorithm> in C++. – David Thornley Dec 18 '09 at 15:15
show 3 more comments
feedback

Type safety comes to mind. Downcasting to a parametrized type will always be unsafe without reified generics:

List<String> myFriends = new ArrayList();
myFriends.add("Alice");
getSession().put("friends", myFriends);
// later, elsewhere
List<Friend> myFriends = (List<Friend>) getSession().get("friends");
myFriends.add(new Friend("Bob")); // works like a charm!
// and so...
List<String> myFriends = (List<String>) getSession().get("friends");
for (String friend : myFriends) print(friend); // ClassCastException, wtf!?

Also, abstractions would leak less - at least the ones which may be interested in runtime information about their type parameters. Today, if you need any kind of runtime information about the type of one of the generic parameters you have to pass its Class along as well. That way, your external interface depends on your implementation (whether you use RTTI about your parameters or not).

link|improve this answer
Yes - I have a way around this in that I create a ParametrizedList which copies the data in the source collection checking types. It'sa bit like Collections.checkedList but can be seeded with a collection to start with. – oxbow_lakes Dec 18 '09 at 12:39
gustafc: I don't follow your second point at all. – Tom Hawtin - tackline Dec 18 '09 at 13:24
@tackline - well, a few abstractions would leak less. If you need access to type metadata in your implementation, the external interface will tell on you because clients need to send you a class object. – gustafc Dec 18 '09 at 13:55
... meaning that with reified generics, you could add stuff like T.class.getAnnotation(MyAnnotation.class) (where T is a generic type) without changing the external interface. – gustafc Dec 18 '09 at 14:03
@gustafc: if you think that C++ templates give you complete type safety, read this: kdgregory.com/index.php?page=java.generics.cpp – kdgregory Dec 18 '09 at 14:47
show 2 more comments
feedback

You'd be able to create generic arrays in your code.

public <T> static void DoStuff() {
    T[] myArray = new T[42]; // No can do
}
link|improve this answer
what's wrong with Object? An array of objects is array of references anyway. It's not like the object data is sitting on the stack - it's all in the heap. – Ran Biron Dec 18 '09 at 19:11
4  
Type safety. I can put whatever I want in Object[], but only Strings in String[]. – Turnor Dec 18 '09 at 19:44
feedback

My exposure to Java Geneircs is quite limited, and apart from the points other answers have already mentioned there is a scenario explained in the book Java Generics and Collections, by Maurice Naftalin and Philip Walder, where the reified generics are useful.

Since the types are not reifiable, it is not possible to have Parameterized exceptions.

For example the declaration of below form is not valid.

class ParametericException<T> extends Exception // compile error

This is because the catch clause checks whether the thrown exception matches a given type. This check is same as the check performed by instance test and since the type is not reifiable the above form of statement is invalid.

If the above code was valid then exception handling in the below manner would have been possible:

try {
     throw new ParametericException<Integer>(42);
} catch (ParametericException<Integer> e) { // compile error
  ...
}

The book also mentions that if Java generics are defined similar to the way C++ templates are defined (expansion) it may lead to more efficient implementation as this offers more opportunities for optimization. But doesn't offer any explanation more than this, so any explanation (pointers) from the knowledgeable folks would be helpful.

link|improve this answer
It's a valid point but I'm not quite sure why an exception class so parametrized would be useful. Could you modify your answer to contain a brief example of when this might be useful? – oxbow_lakes Dec 18 '09 at 18:22
Couldn't agree more. – Ran Biron Dec 18 '09 at 19:13
@oxbow_lakes:Sorry My knowledge of Java Generics is quite limited and I am making an attempt to improve upon it. So now I am not able to think of any example where parametrized exception could be useful. Will try to think about it. Thx. – sateesh Dec 18 '09 at 19:23
It could act as a substitute for multiple inheritance of exception types. – meriton Dec 19 '09 at 15:33
The performance improvment is that currently, a type parameter must inherit from Object, requiring boxing of primitive types, which imposes an execution and memory overhead. – meriton Dec 19 '09 at 15:34
feedback

Arrays would probably play much nicer with generics if they were reified.

link|improve this answer
what is reification anyway? – ante.sabo Dec 18 '09 at 12:04
2  
Sure, but they would still have problems. List<String> is not a List<Object>. – Tom Hawtin - tackline Dec 18 '09 at 13:18
Agree - but only for primitives (Integer, Long, etc). For "regular" Object, this is the same. Since primitives can't be a parameterized type (a far more serious issue, at least IMHO), I don't see this as a real pain. – Ran Biron Dec 18 '09 at 19:10
The problem with arrays is their covariance, nothing to do with reification. – Recurse Jul 30 '10 at 6:01
feedback

I have a wrapper that presents a jdbc resultset as an iterator, (it means I can unit test database-originated operations a lot easier through dependency injection).

The API looks like Iterator<T> where T is some type that can be constructed using only strings in the constructor. The Iterator then looks at the strings being returned from the sql query and then tries to match it to a constructor of type T.

In the current way that generics are implemented, I have to also pass in the class of the objects that I will be creating from my resultset. If I understand correctly, if generics were reified, I could just call T.getClass() get its constructors, and then not have to cast the result of Class.newInstance(), which would be far neater.

Basically, I think it makes writing APIs (as opposed to just writing an application) easier, because you can infer a lot more from objects, and thereby less configuration will be necessary...I didn't appreciate the implications of annotations until I saw them being used in things like spring or xstream instead of reams of config.

link|improve this answer
2  
Which, in a nutshell, is balusC's point – James B Dec 18 '09 at 12:10
But passing in the class seems safer all round to me. In any case, reflectively creating instances from database queries is extremely brittle to changes such as refactoring anyway (in both your code and the database). I guess I was looking for things whereby it is just not possible to provide the class – oxbow_lakes Dec 18 '09 at 12:31
+1 For "... it makes writing APIs ... easier" – richj Sep 27 '11 at 10:20
feedback

One nice thing would be avoiding boxing for primitive (value) types. This is somewhat related to the array complaint that others have raised, and in cases where memory use is constrained it could actually make a significant difference.

There are also several types of problems when writing a framework where being able to reflect over the parameterized type is important. Of course this can be worked around by passing a class object around at runtime, but this obscures the API and places an additional burden on the user of the framework.

link|improve this answer
This essentially boils down to being able to do new T[] where T is of primitive type! – oxbow_lakes Jan 20 '10 at 11:06
feedback

It's not that you will achieve anything extraordinary. It will just be simpler to understand. Type erasure seems like a hard time for beginners, and it ultimately requires one's understanding on the way the compiler works.

My opinion is, that generics are simply an extra that saves a lot of redundant casting.

link|improve this answer
feedback

Here's one that's caught me today: without reification, if you write a method that accepts a varargs list of generic items ... callers can THINK they're typesafe, but accidentally pass in any-old crud, and blow up your method.

Seems unlikely that would happen? ... Sure, until ... you use Class as your datatype. At this point, your caller will happily send you lots of Class objects, but a simple typo will send you Class objects that don't adhere to T, and disaster strikes.

(NB: I may have made a mistake here, but googling around "generics varargs", the above appears to be just what you'd expect. The thing that makes this a practical problem is the use of Class, I think - callers seem to be less careful :( )


For instance, I'm using a paradigm that uses Class objects as a key in maps (it's more complex than a simple map - but conceptually that's what's going on).

e.g. this works great in Java Generics (trivial example) :

public <T extends Component> Set<UUID> getEntitiesPossessingComponent( Class<T> componentType)
    {
        // find the entities that are mapped (somehow) from that class. Very type-safe
    }

e.g. without reification in Java Generics, this one accepts ANY "Class" object. And it's only a tiny extension of the previous code :

public <T extends Component> Set<UUID> getEntitiesPossessingComponents( Class<T>... componentType )
    {
        // find the entities that are mapped (somehow) to ALL of those classes
    }

The above methods have to be written out thousands of times in an individual project - so the possibility for human error becomes high. Debugging mistakes is proving "not fun". I'm currently trying to find an alternative, but don't hold much hope.

link|improve this answer
feedback

If Java generics were improved I really would like to be able to create a kind of typedef so that I can abstract from the implementation detail that is contained in List<Integer> while I would like to say I'm using a list of temperatures all over my code. (The generic notation gets ugly fast imho.)

Another improvement would be the possibility to have the compiler allow List<Integer> to be used as List<Object> for use in generic implementations taking advantage of the inheritance hierarchy for generics containers too.

Edit

What I am saying above is not that I want the types List<A> and List<B> to be interchangeable but I would like to be able to abstract from the fact that A and B are in a container, maybe an example helps.

Given the definitions:

class Shape { 
    void draw() {
         // do something
    }
}

class Circle extends Shape { 
}

class Rectangle extends Shape {
}

class Canvas {
    void draw(List<Shape> shapes) {
         // draw shapes in list
    } 
}

I would like to be able to:

Cancas canvas = new Canvas();
List<Circle> circles = new List<Circle>();
List<Rectangle> rectangles = new List<Rectangle>();

// set up and create shapes

canvas.draw(circles);
canvas.draw(rectangles);

I.e. Canvas::draw can implement functionality based on the Shape interface (polymorphism) analogous to a method draw(Shape shape) that can be called with a Circle or Rectangle object nowadays.

Of course it would be an error if the list argument would be used to add objects of the wrong type, but with reified generics that should result in an exception.

link|improve this answer
4  
A mutable list List<Integer> is not a List<Object>. This will never be correct. Consider convariant Java arrays: Object[] x = new String[]{"1"}; x[0] = 1; -> java.lang.ArrayStoreException – Thomas Jung Dec 18 '09 at 12:09
Read-only context (using the const keyword?) would have many uses with regards to polymorphism. And like the arraystore exception, reified generics can catch errors equivalent to your array example. – rsp Dec 18 '09 at 12:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.