Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code:

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

The error:

Cannot instantiate the type List<Product>

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

share|improve this question
3  
Glad this was asked. As a dev moving from c# to java, it isn't immediately clear that list is an interface in this language. – SouthShoreAK Jan 30 at 16:24
1  
@SouthShoreAK it is if you read the documentation :) – Matt Ball Mar 14 at 19:30

3 Answers

List is an interface. Interfaces cannot be instantiated. Only concrete types can be instantiated. You probably want to use an ArrayList, which is an implementation of the List interface.

List<Product> products = new ArrayList<Product>();
share|improve this answer

Use a concrete list type, e.g. ArrayList instead of just List.

share|improve this answer

List is an interface. You need a specific class in the end so either try

List l = new ArrayList();

or

List l = new LinkedList();

Whichever suit your needs.

share|improve this answer
We can do it both ways cant we? I was just giving an answer to the problem. Actually one of the answers. – Mechkov Oct 31 '11 at 21:53
2  
Raw collection types are dangerous and should not be used or suggested for use in any new code targeted for Java 5+, end of story. – Matt Ball Oct 31 '11 at 22:15
Should be avoided, yes. What about the pre-generics Java applications? Bottom line is there are two ways to instantiate this kind of statement and they both are valid. There is another question of which one should be used whenever possible. And that's generics. – Mechkov Oct 31 '11 at 22:30
1  
@Matt Ball Ok man, let it die. We have to cover all aspects though. Regards! – Mechkov Oct 31 '11 at 22:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.