无法实例化类型 List<Product>

2022-01-18 00:00:00 list initialization java ejb

我有以下代码:

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

错误:

Cannot instantiate the type List<Product>

Product 是我的 EJB 项目中的一个实体.为什么会出现此错误?

Product is an Entity in my EJB project. Why I'm getting this error?

推荐答案

List 是一个接口.接口不能被实例化.只能实例化具体类型.您可能想使用 ArrayList,是List接口的实现.

List<Product> products = new ArrayList<Product>();

相关文章