Is there a way to force the return type of Arrays.asList

JavaGenerics

Java Problem Overview


I have a method returning a collection of a base class:

import java.util.*;
class Base { }
class Derived extends Base { }

Collection<Base> getCollection()
{
    return Arrays.asList(new Derived(),
                         new Derived());
}

This fails to compile, as the return type of Arrays.asList (List<Derived>) does not match the return type of the method (Collection<Base>). I understand why that happens: since the generic types are different, the two classes are not related by inheritance.

There are many ways to fix the compiler error from changing the return type of the method to not using Arrays.asList to casting one of the derived objects to Base.

Is there a way to tell the compiler to use a different but compatible type when it resolves the generic type for the Arrays.asList call? (I keep trying to use this pattern and running into this problem, so if there is a way to make it work, I would like to know it.)

I thought that you could do something like

Collection<Base> getCollection()
{
    return Arrays.asList<Base>(new Derived(),
                               new Derived());
}

When I try to compile that (java 6), the compiler complains that it is expecting a ')' at the comma.

Java Solutions


Solution 1 - Java

Your syntax is almost correct; the <Base> goes before the method name:

return Arrays.<Base>asList(new Derived(),
                           new Derived());

Java 8

For Java 8, with its improved target type inference, the explicit type argument is not necessary. Because the return type of the method is Collection<Base>, the type parameter will be inferred as Base.

return Arrays.asList(new Derived(),
                     new Derived());

The explicit type parameter is still necessary for Java 7 and below. You can still supply the explicit type parameter in Java 8; it's optional.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTroy DanielsView Question on Stackoverflow
Solution 1 - JavargettmanView Answer on Stackoverflow