无法实例化类型 List<Product>
2022-08-31 09:05:07
我有以下代码:
List<Product> product = new List<Product>();
错误:
Cannot instantiate the type List<Product>
Product
是我的 EJB 项目中的一个实体。为什么我会收到此错误?
我有以下代码:
List<Product> product = new List<Product>();
错误:
Cannot instantiate the type List<Product>
Product
是我的 EJB 项目中的一个实体。为什么我会收到此错误?
使用具体的列表类型,例如 而不仅仅是.ArrayList
List