vote up 0 vote down star

So I have this general purpose HashTable class I'm developing, and I want to use it generically for any number of incoming types, and I want to also initialize the internal storage array to be an array of LinkedList's (for collision purposes), where each LinkedList is specified ahead of time (for type safety) to be of the type of the generic from the HashTable class. How can I accomplish this? The following code is best at clarifying my intent, but of course does not compile.

public class HashTable<K, V>
{
    private LinkedList<V>[] m_storage;

    public HashTable(int initialSize)
    {
        m_storage = new LinkedList<V>[initialSize];
    }
}
flag

Duplicate of stackoverflow.com/questions/529085/… – skaffman Jun 22 at 7:27

3 Answers

vote up 6 vote down check

Generics in Java doesn't allow creation of arrays with generic types. You can cast your array to a generic type, but this will generate an unchecked conversion warning:

public class HashTable<K, V>
{
    private LinkedList<V>[] m_storage;

    public HashTable(int initialSize)
    {
        m_storage = (LinkedList<V>[]) new LinkedList[initialSize];
    }
}

Here is a good explanation, without getting into the technical details of why generic array creation isn't allowed.

link|flag
+1 Thanks for the great response and resource. – dxmio Jun 22 at 7:39
You can add @SuppressWarnings({"unchecked"}) to the assignment to keep the compiler quiet. – Aaron Digulla Jun 22 at 8:00
vote up -1 vote down

May be i dont understand your question but you seem to be doing what is already there. A HashTable already has generic support K,V?

You could give some more information about the problem you are trying to solve

link|flag
There is no other purpose or problem than learning. You can't learn how a HashTable is best implemented by using one like a black box. – dxmio Jun 22 at 7:42
vote up 0 vote down

Also, you can suppress the warning on a method by method basis using annotations:

@SuppressWarnings("unchecked")
public HashTable(int initialSize) {
    ...
    }
link|flag

Your Answer

Get an OpenID
or

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