Generics type inference fails?

后端 未结 2 1359
别跟我提以往
别跟我提以往 2021-01-02 11:41

Example A

Study the following snippet:

public class ExampleA {
   static class Pair { }

   static  Pair anyPair()         


        
相关标签:
2条回答
  • 2021-01-02 12:14

    Your second call to anyPair() does not have any way to determine it's types and so it defaults to <Object, Object>.

    The compiler is breaking process(p, anyPair()); into it's pieces and processing each individually. When it does this, it needs to process the arguments first to determine their types, which can then be used when processing process.

    When it goes to process anyPair() there is no type information available for that piece, because it does not know that it is part of process at that point. It defaults to <Object, Object>, which then causes a type mismatch when looking at process.

    The same thing happens with your second example. Collections.emptySet() needs to be processed by itself, but has no way of determining the Types needed.

    There are 2 ways to solve this:

    The first is to give the compiler the information it needs for type inference the same way you did with the first call to anyPair(), by storing it in a temporary variable with the correct type.

    The second (thanks to @BalusC) is to use ExampleA.<String, Integer>anyPair(). This syntax explicitly sets the types needed without having to look beyond the invocation.

    0 讨论(0)
  • 2021-01-02 12:19

    Why:

    Collections.emptySet() is trying to infer the type to return. It's unable because E could be Object or String. Both are valid matches for process. Generic parameters are always invariant by default, not contravariant. That means that Integer extends Number but List<Integer> does not extend List<Number>. It does extend List<? extends Number>, however.

    Solutions:

    Use an assignment to infer the type:

    public <E> void process(Set<E> s1, Set<E> s2) { return; }
    
    public void main(String[] args) {
       Set<String> s = Collections.emptySet();  // add this line
       process(new HashSet<String>(), s);
    }
    

    Explicitly write the type:

    public <E> void process(Set<E> s1, Set<E> s2) { return; }
    
    public void main(String[] args) {
       process(new HashSet<String>(), Collections.<String>emptySet()); //notice <String>
    }
    

    Allow contravariance explicitly (this is probably not what you want, however):

    public <E> void process(Set<E> s1, Set<? super E> s2) { // added "super"
      return;
    }
    
    public void main(String[] args) {
       process(new HashSet<String>(), Collections.emptySet());
    }
    
    0 讨论(0)
提交回复
热议问题