gson 为什么protected构造函数可以用于包外的新示例?

bybem2ql  于 2022-11-06  发布在  其他
关注(0)|答案(1)|浏览(136)

来自gson-2.8.6.jar

package com.google.gson.reflect;
...
public class TypeToken<T> {
  final Class<? super T> rawType;
  final Type type;
  final int hashCode;

  /**
   * Constructs a new type literal. Derives represented class from type
   * parameter.
   *
   * <p>Clients create an empty anonymous subclass. Doing so embeds the type
   * parameter in the anonymous class's type hierarchy so we can reconstitute it
   * at runtime despite erasure.
   */
  @SuppressWarnings("unchecked")
  protected TypeToken() {
    this.type = getSuperclassTypeParameter(getClass());
    this.rawType = (Class<? super T>) $Gson$Types.getRawType(type);
    this.hashCode = type.hashCode();
  }

  /**
   * Unsafe. Constructs a type literal manually.
   */
  @SuppressWarnings("unchecked")
  TypeToken(Type type) {
    this.type = $Gson$Types.canonicalize($Gson$Preconditions.checkNotNull(type));
    this.rawType = (Class<? super T>) $Gson$Types.getRawType(this.type);
    this.hashCode = this.type.hashCode();
  }
...
}

在包com.google.gson.reflect之外,为什么protected TypeToken()构造函数可以用来新建一个示例?
{}出现在new TypeToken<String>()之后的语法是什么?

package com.dataservice.controller;

...
Type localVarReturnType = (new TypeToken<String>() {}).getType();
...
xsuvu9jc

xsuvu9jc1#

您看到的是匿名类的语法:

实际上发生的是

Type localVarReturnType = (new TypeToken<String>() {}).getType();

定义了一个继承自TypeToken的新匿名类。您可以立即从语法new和大括号{}中派生出这个类。
允许您访问protected构造函数的原因是因为protected允许访问包继承类。由于您的匿名类继承自TypeToken,因此访问是可能的。

相关问题