不存在类型变量 T 的实例,因此 List<T> 符合 Integer
Posted
技术标签:
【中文标题】不存在类型变量 T 的实例,因此 List<T> 符合 Integer【英文标题】:No instance(s) of type variable(s) T exist so that List<T> conforms to Integer 【发布时间】:2017-04-22 12:15:48 【问题描述】:在以下代码中:
return new HashSet<>(namedParameterJdbcTemplate.query(
SOME_SQL_QUERY_STRING,
parametersMap,
(resultSet, rowNum) -> resultSet.getBigDecimal("GETID")
));
(resultSet, rowNum) -> resultSet.getBigDecimal("GETID"))
下出现红线,并出现以下错误:No instance(s) of type variable(s) T exist so that List<T> conforms to Integer
。有人可以帮我解释一下为什么会这样吗?
【问题讨论】:
resultSet 包含什么类型?这可能不是一个数字 您可能需要指定“查询”函数的通用参数:(...) namedParameterJdbcTemplate.query()
的重载与您预期的不同 - 检查它使用的重载。
@recurf 结果集将包含 BigDecimal
@jiriTousek public <T> List<T> query(String sql, Map<String, ?> paramMap, RowMapper<T> rowMapper) throws DataAccessException return query(sql, new MapSqlParameterSource(paramMap), rowMapper);
这是查询方法过载。抱歉格式错误
【参考方案1】:
根本问题是(基于代码)推断出不同的(不需要的)“查询”方法的重载版本,并且作为第三个参数给出的 lambda(函数)不适合此版本的“查询”。
解决此问题的一种方法是通过提供 type 参数来“强制”您想要的查询功能:
return new HashSet<>(namedParameterJdbcTemplate.<BigDecimal>query( ...
【讨论】:
供将来参考,这称为类型见证。【参考方案2】:为您的方法调用添加显式转换
在我的情况下,我有
<T> Map<String, T> getMap(@NotNull String rootPath, @NotNull Class<T> type)
我使用它就像
LinkedHashMap<String,String> x = xmlRegestryFile.getMap("path/to/map/of/string", String.class)
但它失败并给了我这个错误,所以我通过添加转换克服了这个错误
x = (LinkedHashMap<String, String>) xmlRegestryFile.getMap("my/path", String.class)
【讨论】:
以上是关于不存在类型变量 T 的实例,因此 List<T> 符合 Integer的主要内容,如果未能解决你的问题,请参考以下文章