Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the reason Java doesn't allow us to do

private T[] elements = new T[initialCapacity];

I could understand .NET didn't allow us to do that, as in .NET you have value types that at run-time can have different sizes, but in Java all kinds of T will be object references, thus having the same size(correct me if I'm wrong).

What is the reason?

share|improve this question

9 Answers

up vote 39 down vote accepted

It's because Java's arrays (unlike generics) contain, at runtime, information about its component type. So you must know the component type when you create the array. Since you don't know what T is at runtime, you can't create the array.

share|improve this answer
Brief and exact. – Dimitris Andreou May 29 '10 at 8:22
2  
But what about erasure? Why doesn't that apply? – Qix Mar 5 at 8:22

Quote:

Arrays of generic types are not allowed because they're not sound. The problem is due to the interaction of Java arrays, which are not statically sound but are dynamically checked, with generics, which are statically sound and not dynamically checked. Here is how you could exploit the loophole:

class Box<T> {
    final T x;
    Box(T x) {
        this.x = x;
    }
}

class Loophole {
    public static void main(String[] args) {
        Box<String>[] bsa = new Box<String>[3];
        Object[] oa = bsa;
        oa[0] = new Box<Integer>(3); // error not caught by array store check
        String s = bsa[0].x; // BOOM!
    }
}

We had proposed to resolve this problem using statically safe arrays (aka Variance) bute that was rejected for Tiger.

-- gafter

(I believe it is Neal Gafter, but am not sure)

See it in context here: http://forums.sun.com/thread.jspa?threadID=457033&forumID=316

share|improve this answer
Note that I made it a CW since the answer is not mine. – Bart Kiers May 28 '10 at 7:55
4  
This explains why it might not be typesafe. But type safety issues could be warned by the compiler. The fact is that it is not even possible to do it, for almost the same reason why you cannot do new T(). Each array in Java, by design, stores the component type (i.e. T.class) inside it; therefore you need the class of T at runtime to create such an array. – newacct May 29 '10 at 23:56
You still can use new Box<?>[n], which might be sometimes sufficient, although it wouldn't help in your example. – Bartosz Klimek Jul 2 '12 at 7:58

The reason this is impossible is that Java implements its Generics purely on the compiler level, and there is only one class file generated for each class. This is called Type Erasure.

At runtime, the compiled class needs to handle all of its uses with the same bytecode. So "new T[capacity]" would have absolutely no idea what type needs to be instanciated.

share|improve this answer
+1: I was about to leave a comment to Bark K.'s answer about this, when I noticed a different answer already listed it. – Powerlord May 28 '10 at 19:20

By failing to provide a decent solution, you just end up with something worse IMHO.

The common work around is as follows.

T[] ts = new T[n];

is replaced with

T[] ts = (T[]) new Object[n];

I prefer the first example, however more acedemic types seem to prefer the second, or just prefer not to thing about it.

Most of the examples of why you can't just use an Object[] equally apply to List or Collection (which are supported), so I see them as very poor arguments.

Note: this is one of the reasons the Collections library itself doesn't compile without warnings. If you this usecase cannot be supported without warnings, something is fundermentally broken with the generics model IMHO.

share|improve this answer
4  
You have to be careful with the second one. If you return the array created in such a way to someone who expects, say, a String[] (or if you store it in a field that is publicly accessible of type T[], and someone retrieves it), then they will get a ClassCastException. – newacct May 30 '10 at 0:01

I like the answer indirectly given by Gafter. However, I propose it is wrong. I changed Gafter's code a little. It compiles and it runs for a while then it bombs where Gafter predicted it would

class Box<T> {

    final T x;

    Box(T x) {
        this.x = x;
    }
}

class Loophole {

    public static <T> T[] array(final T... values) {
        return (values);
    }

    public static void main(String[] args) {

        Box<String> a = new Box("Hello");
        Box<String> b = new Box("World");
        Box<String> c = new Box("!!!!!!!!!!!");
        Box<String>[] bsa = array(a, b, c);
        System.out.println("I created an array of generics.");

        Object[] oa = bsa;
        oa[0] = new Box<Integer>(3);
        System.out.println("error not caught by array store check");

        try {
            String s = bsa[0].x;
        } catch (ClassCastException cause) {
            System.out.println("BOOM!");
            cause.printStackTrace();
        }
    }
}

The output is

I created an array of generics.
error not caught by array store check
BOOM!
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
    at Loophole.main(Box.java:26)

So it appears to me you can create generic array types in java. Did I misunderstand the question?

share|improve this answer
Your example is different from what I've asked. What you described are the dangers of array covariance. Check it out (for .NET : blogs.msdn.com/b/ericlippert/archive/2007/10/17/… ) – devoured elysium May 28 '10 at 11:28
Hopefully you get a type-safety warning from the compiler, yes? – Matt McHenry May 28 '10 at 11:34
Yes, I get a type-safety warning. Yes, I see that my example is not responsive to the question. – emory May 28 '10 at 11:51
Actually you get multiple warnings due to sloppy initialization of a,b,c. Also, this is well known and affects the core library, e.g. <T>java.util.Arrays.asList(T...). If you pass any non-reifiable type for T, you get a warning (because the created array has a less precise type than the code pretends), and it's super ugly. It would be better if the author of this method got the warning, instead of emitting it at usage site, given that the method itself is safe, it doesn't expose the array to the user. – Dimitris Andreou May 29 '10 at 8:34
You did not create a generic array here. The compiler created a (non-generic) array for you. – newacct May 29 '10 at 23:57

The main reason is due to the fact that arrays in Java are covariant.

There's a good overview here.

share|improve this answer
I don't see how you could support "new T[5]" even with invariant arrays. – Dimitris Andreou May 29 '10 at 8:19

There surely must be a good way around it (maybe using reflection), because it seems to me that that's exactly what ArrayList.toArray(T[] a) does. I quote:

public <T> T[] toArray(T[] a)

Returns an array containing all of the elements in this list in the correct order; the runtime type of the returned array is that of the specified array. If the list fits in the specified array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the specified array and the size of this list.

So one way around it would be to use this function i.e. create an ArrayList of the objects you want in the array, then use toArray(T[] a) to create the actual array. It wouldn't be speedy, but you didn't mention your requirements.

So does anyone know how toArray(T[] a) is implemented?

share|improve this answer
2  
List.toArray(T[]) works because you are essentially giving it the component type T at runtime (you are giving it an instance of the desired array type, from which it can get the array class, and then, the component class T). With the actual component type at runtime, you can always create an array of that runtime type using Array.newInstance(). You'll find that mentioned in many question that ask how to create an array with a type unknown at compile time. But the OP was specifically asking why you can't use the new T[] syntax, which is a different question – newacct Nov 23 '11 at 22:22

The answer was already given but if you already have an Instance of T then you can do this:

T t; //Assuming you already have this object instantiated or given by parameter.
int length;
T[] ts = (T[]) Array.newInstance(t.getClass(), length);

Hope, I could Help, Ferdi265

share|improve this answer

Despite Java arrays are considered like Collections in practice, in theory they are of type java.lang.Object, that's why they don't have generics.

share|improve this answer
1  
Collections are java.lang.Object too :) – Dimitris Andreou May 29 '10 at 8:23
java.sun.com/docs/books/jls/second_edition/html/arrays.doc.html . Here says "The direct superclass of an array type is Object. Every array type implements the interfaces Cloneable and java.io.Serializable". In the other hand, a List, Vector, ArrayList and the rest of collections (which DO have generics) extend from a class Collection. i.e. = public interface List<E> extends Collection<E> a List is a Collection (which is an Object too, but it's not its direct superclass) and an array is an Object. – pabiagioli May 31 '10 at 15:04
There's the Map interface too. but it's not a true collection. Here's the reference: java.sun.com/docs/books/tutorial/collections/interfaces/… – pabiagioli May 31 '10 at 15:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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