Java: Array of primitive data types does not autobox

David Koelle picture David Koelle · Feb 5, 2009 · Viewed 21.1k times · Source

I have a method like this:

public static <T> boolean isMemberOf(T item, T[] set)
{
    for (T t : set) {
        if (t.equals(item)) {
            return true;
        }
    }
    return false;
}

Now I try to call this method using a char for T:

char ch = 'a';
char[] chars = new char[] { 'a', 'b', 'c' };
boolean member = isMemberOf(ch, chars);

This doesn't work. I would expect the char and char[] to get autoboxed to Character and Character[], but that doesn't seem to happen.

Any insights?

Answer

Eddie picture Eddie · Feb 5, 2009

There is no autoboxing for arrays, only for primitives. I believe this is your problem.