什么是Type & TypeToken?
我的项目中有以下方法
public void execute(final int apiId, final ResponseHandler handler, final Type type)
并且使用TypeToken确定类型,如下所示
final Type serviceErrorType = new TypeToken<>() {
}.getType();
我在这里浏览了这个链接,但无法完全理解和Type
TypeToken
任何人都可以分享一个链接或帮助理解这两个概念吗?