When to use generic methods and when to use wild-card?

67,732

Solution 1

There are certain places, where wildcards, and type parameters do the same thing. But there are also certain places, where you have to use type parameters.

  1. If you want to enforce some relationship on the different types of method arguments, you can't do that with wildcards, you have to use type parameters.

Taking your method as example, suppose you want to ensure that the src and dest list passed to copy() method should be of same parameterized type, you can do it with type parameters like so:

public static <T extends Number> void copy(List<T> dest, List<T> src)

Here, you are ensured that both dest and src have same parameterized type for List. So, it's safe to copy elements from src to dest.

But, if you go on to change the method to use wildcard:

public static void copy(List<? extends Number> dest, List<? extends Number> src)

it won't work as expected. In 2nd case, you can pass List<Integer> and List<Float> as dest and src. So, moving elements from src to dest wouldn't be type safe anymore. If you don't need such kind of relation, then you are free not to use type parameters at all.

Some other difference between using wildcards and type parameters are:

  • If you have only one parameterized type argument, then you can use wildcard, although type parameter will also work.
  • Type parameters support multiple bounds, wildcards don't.
  • Wildcards support both upper and lower bounds, type parameters just support upper bounds. So, if you want to define a method that takes a List of type Integer or it's super class, you can do:

    public void print(List<? super Integer> list)  // OK
    

    but you can't use type parameter:

     public <T super Integer> void print(List<T> list)  // Won't compile
    

References:

Solution 2

Consider following example from The Java Programming by James Gosling 4th edition below where we want to merge 2 SinglyLinkQueue:

public static <T1, T2 extends T1> void merge(SinglyLinkQueue<T1> d, SinglyLinkQueue<T2> s){
    // merge s element into d
}

public static <T> void merge(SinglyLinkQueue<T> d, SinglyLinkQueue<? extends T> s){
        // merge s element into d
}

Both of the above methods have the same functionality. So which is preferable? Answer is 2nd one. In the author's own words :

"The general rule is to use wildcards when you can because code with wildcards is generally more readable than code with multiple type parameters. When deciding if you need a type variable, ask yourself if that type variable is used to relate two or more parameters, or to relate a parameter type with the return type. If the answer is no, then a wildcard should suffice."

Note: In book only second method is given and type parameter name is S instead of 'T'. First method is not there in the book.

Solution 3

In your first question: It means that if there is a relation between the parameter's type and the method's return type then use a generic.

For example:

public <T> T giveMeMaximum(Collection<T> items);
public <T> Collection<T> applyFilter(Collection<T> items);

Here you are extracting some of the T following a certain criteria. If T is Long your methods will return Long and Collection<Long>; the actual return type is dependent on the parameter type, thus it is useful, and advised, to use generic types.

When this is not the case you can use wild card types:

public int count(Collection<?> items);
public boolean containsDuplicate(Collection<?> items);

In this two example whatever the type of the items in the collections the return types will be int and boolean.

In your examples:

interface Collection<E> {
    public boolean containsAll(Collection<?> c);
    public boolean addAll(Collection<? extends E> c);
}

those two functions will return a boolean whatever is the types of the items in the collections. In the second case it is limited to instances of a subclass of E.

Second question:

class Collections {
    public static <T> void copy(List<T> dest, List<? extends T> src) {
    ...
}

This first code allow you to pass an heterogeneous List<? extends T> src as a parameter. This list can contain multiple elements of different classes as long as they all extends the base class T.

if you had:

interface Fruit{}

and

class Apple implements Fruit{}
class Pear implements Fruit{}
class Tomato implements Fruit{}

you could do

List<? extends Fruit> basket = new ArrayList<? extends Fruit>();
basket.add(new Apple());
basket.add(new Pear());
basket.add(new Tomato());
List<Fruit> fridge = new ArrayList<Fruit>(); 

Collections.copy(fridge, basket);// works 

On the other hand

class Collections {
    public static <T, S extends T> void copy(List<T> dest, List<S> src) {
    ...
}

constrain List<S> src to be of one particular class S that is a subclass of T. The list can only contain elements of one class (in this instance S) and no other class, even if they implement T too. You wouldn't be able to use my previous example but you could do:

List<Apple> basket = new ArrayList<Apple>();
basket.add(new Apple());
basket.add(new Apple());
basket.add(new Apple());
List<Fruit> fridge = new ArrayList<Fruit>();

Collections.copy(fridge, basket); /* works since the basket is defined as a List of apples and not a list of some fruits. */

Solution 4

Wildcard method is also generic - you could call it with some range of types.

The <T> syntax defines a type variable name. If a type variable has any use (e.g. in method implementation or as a constraint for other type), then it makes sense to name it, otherwise you could use ?, as anonymous variable. So, looks like just a short-cut.

Moreover, the ? syntax is not avoidable when you declare a field:

class NumberContainer
{
 Set<? extends Number> numbers;
}

Solution 5

I will try and answer your question, one by one.

Don't we think wild card like (Collection<? extends E> c); is also supporting kind of polymorphism?

No. The reason is that the bounded wildcard has no defined parameter type. It is an unknown. All it "knows" is that the "containment" is of a type E (whatever defined). So, it cannot verify and justify whether the value provided matches the bounded type.

So, it's no sensible to have polymorphic behaviours on wildcards.

The document discourages the second declaration and promotes usage of first syntax? What's the difference between the first and second declaration? Both seems to be doing the same thing?

The first option is better in this case as T is always bounded, and source will definitely have values (of unknowns) that subclasses T.

So, suppose that you want to copy all list of numbers, the first option will be

Collections.copy(List<Number> dest, List<? extends Number> src);

src, essentially, can accept List<Double>, List<Float>, etc. as there is an upper bound to the parameterized type found in dest.

The 2nd option will force you to bind S for every type you want to copy, like so

//For double 
Collections.copy(List<Number> dest, List<Double> src); //Double extends Number.

//For int
Collections.copy(List<Number> dest, List<Integer> src); //Integer extends Number.

As S is a parameterized type that needs binding.

I hope this helps.

Share:
67,732
benz
Author by

benz

I am aspiring to become a developer. Pretty much a novice in the field of programming. I know it will take a fair amount of time when i will be able to call myself a decent programmer but i am ready to persist for any difficulty and no matter how much hard work i need to put in.. For the new aspiring developers like us, Like us on Facebook You can check our blog at Phoenix 3 Blog

Updated on August 26, 2020

Comments

  • benz
    benz over 3 years

    I am reading about generic methods from OracleDocGenericMethod. I am pretty confused about the comparison when it says when to use wild-card and when to use generic methods. Quoting from the document.

    interface Collection<E> {
        public boolean containsAll(Collection<?> c);
        public boolean addAll(Collection<? extends E> c);
    }
    

    We could have used generic methods here instead:

    interface Collection<E> {
        public <T> boolean containsAll(Collection<T> c);
        public <T extends E> boolean addAll(Collection<T> c);
        // Hey, type variables can have bounds too!
    }
    

    […] This tells us that the type argument is being used for polymorphism; its only effect is to allow a variety of actual argument types to be used at different invocation sites. If that is the case, one should use wildcards. Wildcards are designed to support flexible subtyping, which is what we're trying to express here.

    Don't we think wild card like (Collection<? extends E> c); is also supporting kind of polymorphism? Then why generic method usage is considered not good in this?

    Continuing ahead, it states,

    Generic methods allow type parameters to be used to express dependencies among the types of one or more arguments to a method and/or its return type. If there isn't such a dependency, a generic method should not be used.

    What does this mean?

    They have presented the example

    class Collections {
        public static <T> void copy(List<T> dest, List<? extends T> src) {
        ...
    }
    

    […]

    We could have written the signature for this method another way, without using wildcards at all:

    class Collections {
        public static <T, S extends T> void copy(List<T> dest, List<S> src) {
        ...
    }
    

    The document discourages the second declaration and promotes usage of first syntax? What's the difference between the first and second declaration? Both seems to be doing the same thing?

    Can someone put light on this area.

  • Buhake Sindi
    Buhake Sindi over 10 years
    Is this not supposed to be a comment?
  • kan
    kan over 10 years
    @BuhakeSindi Sorry, what is unclear? Why -1? I think it answers the question.
  • kan
    kan over 10 years
    This is strange answer. It doesn't explain why you need to use ? at all. You could rewrite it as `public static <T1 extends Number, T2 extends Number> void copy(List<T1> dest, List<T2> src) and in this case it become obvious what is going on.
  • Rohit Jain
    Rohit Jain over 10 years
    @kan. Well that's the real issue. You can use type parameter to enforce same type, but you can't do that with wildcards. Using two different types for type parameter is different thing.
  • Rohit Jain
    Rohit Jain over 10 years
    @kan. See my last two points for why you might need to use wildcards.
  • benz
    benz over 10 years
    Rohit what do you mean by type parameter supports upper bounds only?
  • Rohit Jain
    Rohit Jain over 10 years
    @benz. You can't define a lower bounds in a List using type parameter. List<T super Integer> isn't valid, and won't compile.
  • benz
    benz over 10 years
    This all is making me go back to foundation real difference between wild card and generic methods :)thanks rohit for your explanation
  • Rohit Jain
    Rohit Jain over 10 years
    @benz. You're welcome :) I highly suggest you to go through the link I posted at the end. That is the best resource on Generics you would get.
  • benz
    benz over 10 years
    Can you explain what do you mean in your last paragraph
  • benz
    benz over 10 years
    Sure rohit I will completely go through it and bug you back with the question. Thank you so much for your precious time.
  • benz
    benz over 10 years
    The one that states 2nd option will force you to bind one......can you elaborate over it
  • Buhake Sindi
    Buhake Sindi over 10 years
    <S extends T> states that S is a parameterized type that is a subclass of T, so it requires a parameterized type (no wildcard) that is a subclass of T.
  • Arnold Pistorius
    Arnold Pistorius about 9 years
    List<? extends Fruit> basket = new ArrayList<? extends Fruit>(); Is not a valid syntax. You have to instantiate the ArrayList without bounds.
  • jorgen.ringen
    jorgen.ringen almost 8 years
    "Type parameters support multiple bounds, wildcards don't." "Wildcards support both upper and lower bounds, type parameters just support upper bounds." I didn't quite get this.. What do you mean by "type parameters support multiple bounds"? It just support upper, as you wrote in the next sentence.
  • Rohit Jain
    Rohit Jain almost 8 years
    @jorgen.ringen <T extends X & Y> -> multiple bounds.
  • Khanna111
    Khanna111 over 7 years
    Cannot add an Apple to the basket in the example above since the basket could be a list of Pears'. Incorrect example AFAIK. And does not compile as well.
  • TomasMolina
    TomasMolina about 6 years
    @ArnoldPistorius That do confused me. I checked the API documentation of ArrayList and it has a constructor signed ArrayList(Collection<? extends E> c) . Can you explain me why you have said that?
  • TomasMolina
    TomasMolina about 6 years
    i voted up for the quote of a book, it is direct and concise
  • Arnold Pistorius
    Arnold Pistorius about 6 years
    @Kurapika Could be that I was using an old Java version? Comment was posted almost 3 years ago.
  • stdout
    stdout almost 6 years
    "If you have only one parameterized type argument, then you can use wildcard, although type parameter will also work." I think that statement is not always true especially when you have a generic method where you want to update, for example, the list you've passed as an argument with items in the list (say, you want to re-add all the items again).
  • user3509406
    user3509406 over 5 years
    Then why is Java defined so that we can't use the super keyword for type parameter?