Java Generic Interface vs Generic Methods, and when to use one

前端 未结 3 1136
广开言路
广开言路 2020-12-25 15:33

I was wondering, aside from syntactic difference, when would one use a generic interface over a method that accepts a generic parameter?

public interface Fli         


        
3条回答
  •  囚心锁ツ
    2020-12-25 15:41

    If you declare a generic method, you always let the caller decide, which type arguments to use for the type parameters. The implementation of the method must be able to deal with all possible types arguments (and it doesn’t even have a way to ask for the actual type arguments).

    That said, a method like void fly(T obj); states that the caller may use any type for T while the only thing the implementation can rely on is that the actual type for T will be assignable to Object (like if had been declared).

    So in this specific example, it’s not different to the declaration void fly(Object obj);, which also allows arbitrary objects.

    In contrast, a type parameter on an interface is part of the contract and may be specified or restricted by an implementation of the interface:

    public interface Flight{
       void fly(T obj);
    }
    

    allows implementations like

    public class X implements Flight {
       public void fly(String obj) {
       }
    }
    

    fixing the type of T on the implementation side. Or

    public class NumberFlight implements Flight {
       public void fly(N obj) {
       }
    }
    

    being still generic but restricting the type.


    The signature of an interface is also important when the interface itself is a part of another method signature, e.g.

    public void foo(Flight f) {
        f.fly("some string value");
    }
    

    here, the Flight implementation, which you pass to foo, must be capable of consuming a String value, so Flight or Flight or Flight are sufficient, but not Flight. Declaring such a contract requires type parameters on the interface, not at the interface’s methods.

    提交回复
    热议问题