Java generics method signature explanation

2020-06-09 02:21发布

What does this generic method signature means

public <S, D> D map(S sourceObject, java.lang.Class<D> destinationClass);

I am referring to the <S, D>.
This method returns an object of the same type that was sent in the second parameter.

Can't I just write

public D map(S sourceObject, java.lang.Class<D> destinationClass);

标签: java generics
3条回答
爷、活的狠高调
2楼-- · 2020-06-09 02:41

That means that this method invocation takes two type parameters: S and D.

The <S, D> part is meant as a declaration that this method is generic and takes two type parameters which are then used as placeholders for actual types in the method signature.

When you invoke the method, either you supply the parameters or they get inferred from the types of the expressions you are passing as arguments, like this:

String val = map(10, String.class);

In this case S is Integer and D is String

查看更多
该账号已被封号
3楼-- · 2020-06-09 02:41

<S, D> means that the method is generic (independent of class). Get parameters of type S and the class of D (Class<D>). And return the value of type D - independent of other types.

查看更多
你好瞎i
4楼-- · 2020-06-09 02:48

I guess there is still an error after correcting (or you should show us the whole class, if it also contains type parameters), but I guess I understood your question; as already stated in the comments, you can simply get rid of the S type parameter, because it's only used once in the method signature and replace it with Object. The reduced variant would then look like:

public <D> D map(Object sourceObject, java.lang.Class<D> destinationClass);
查看更多
登录 后发表回答