gpt4 book ai didi

java - 无效的推断类型

转载 作者:行者123 更新时间:2023-11-30 11:18:32 25 4
gpt4 key购买 nike

我只是想在数据库(ORMLite API)之上编写一些泛型帮助程序,我使用Maven进行了编译,并且编译过程因编译失败

invalid inferred types for D; inferred type does not conform to declared bound(s)
[ERROR] inferred: com.j256.ormlite.dao.RuntimeExceptionDao<T,U>
[ERROR] bound(s): com.j256.ormlite.dao.RuntimeExceptionDao<capture#2 of ?,?>


我尝试使用JDK 1.6和1.7进行构建。

public class BaseDbHelper<T,U> extends DatabaseHelper<T, U> {

private Dao<T, U> dao = null;
private RuntimeExceptionDao<T, U> runtimeDao = null;
Class<?> entityClass;

public BaseDbHelper(Context context) {
super(context);
entityClass = (Class<?>) ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0];
}

@Override
public Dao<T, U> getDao() throws SQLException {
if (dao == null) {
// !!! ERROR
dao = getDao(entityClass);
}
return dao;
}

@Override
public RuntimeExceptionDao<T, U> getDataDao() {
if (runtimeDao == null) {
// !!! ERROR
runtimeDao = getRuntimeExceptionDao(entityClass);
}
return runtimeDao;
}

}


这是标记有错误的行中两个父类的签名

public <D extends com.j256.ormlite.dao.RuntimeExceptionDao<T,?>, T>  D getRuntimeExceptionDao(java.lang.Class<T> clazz) { }

public <D extends com.j256.ormlite.dao.Dao<T,?>, T> D getDao(java.lang.Class<T> clazz) throws java.sql.SQLException { }

最佳答案

在这种情况下,您可能需要使用类似TypeTools的类型来解析类型参数:

public BaseDbHelper() {
entityClass = TypeResolver.resolveRawArguments(BaseDbHelper.class, getClass())[0];
}


注意:这仅在BaseDbHelper被子类化时起作用,以便可以在类型定义中捕获 T的值:

public BasePersonHelper extends BaseDbHelper<Person, PersonDAO> {}


否则, T的值将在运行时无法检索。

关于java - 无效的推断类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23827889/

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