我有以下代码:
List<Product> product = new List<Product>();
错误:
Cannot instantiate the type List<Product>
Product是我的EJB项目中的一个实体。为什么我收到此错误?
Product
List是一个接口。接口无法实例化。只能实例化具体类型。你可能想使用ArrayList,这是一个 实现 了的List接口。
List
ArrayList
List<Product> products = new ArrayList<Product>();