gpt4 book ai didi

java - Gson非法类型变量引用

转载 作者:行者123 更新时间:2023-11-30 00:47:26 29 4
gpt4 key购买 nike

我有一个类定义为:

public class Calls<T extends Object>

在这个类中有一个方法 doRequest 为 Gson 请求创建一个 TypeToken(来自 com.google.json.reflect) .

java.lang.reflect.Type type = new TypeToken<HandlerResponse<T>>(){{}}.getType();

其中 HandlerResponse 是一个简单的模型类,它包含如下属性:

private Map detail;

private transient T data;

private transient int count = 0;

private String status;

我在 Android Studio 上遇到的异常是:

FATAL EXCEPTION: main
Process: PID: 32628
java.lang.AssertionError: illegal type variable reference
at libcore.reflect.TypeVariableImpl.resolve(TypeVariableImpl.java:111)
at libcore.reflect.TypeVariableImpl.getGenericDeclaration(TypeVariableImpl.java:125)
at libcore.reflect.TypeVariableImpl.hashCode(TypeVariableImpl.java:47)
at java.util.Arrays.hashCode(Arrays.java:4153)
at com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl.hashCode($Gson$Types.java:479)
at com.google.gson.reflect.TypeToken.<init>(TypeToken.java:64)
at com.company.server.Calls$4.<init>(Calls.java:244)

在 TypeToken 的实例化时崩溃(我想这可能是因为 Java 的类型删除而丢失了 T 类)。

我将 Calls 的实例创建为:

Calls<com.company.model.beans.Model> calls = new Calls<>(){};

最佳答案

解决了,我修改实现如下:

public class Calls<T> {

public Calls(Type type, Class classTypeResponse) {

this.type = type;
this.classTypeResponse = classTypeResponse;
}

doRequest(...) { ... }

...
}

我有一个 classTypeResponse,因为我有一个回调系统,可以为请求的对象返回正确的类类型。

我是这样调用它的:

Type type = new TypeToken<HandlerResponse<com.company.model.beans.Model>>(){}.getType();

Calls<com.company.model.beans.Model> calls = new Calls<>(type, com.company.model.beans.Model.class);

calls.doRequest(...);

T 在运行时不存在,Java 反射系统无法为 TypeToken 推断出正确的类型。解决方案是创建不带泛型的 TypeToken 并将对象传递到您需要的地方。

关于java - Gson非法类型变量引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41554706/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com