我将通配符类型用于列表。
List<? extends txn>
其中txn是接口。我已经使用了gson typetoken作为
new TypeToken<List<? extends txn>>() {}.getType()
反序列化包含此列表的对象时,出现异常
Unable to invoke no-args constructor for ? extends txn. Register an InstanceCreator with Gson for this type may fix this problem.
我可以为通配符参数实现实例创建者吗?