一尘不染

无法实例化类型列表

java

我有以下代码:

List<Product> product = new List<Product>();

错误:

Cannot instantiate the type List<Product>

Product是我的EJB项目中的一个实体。为什么我收到此错误?


阅读 213

收藏
2020-09-09

共1个答案

一尘不染

List是一个接口。接口无法实例化。只能实例化具体类型。你可能想使用ArrayList,这是一个
实现 了的List接口。

List<Product> products = new ArrayList<Product>();
2020-09-09