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

Assuming that I have a class named Class,

And I would like to make a new ArrayList that it's values will be of type Class.

My question is that: How do I do that?

I can't understand from Java Api.

I tried this:

ArrayList<Class> myArray= new ArrayList ArrayList<Class>;
share|improve this question
4  
If you actually do have a class named Class, be aware that that could be easily confused with java.lang.Class - it won't confuse the compiler but it's likely to confuse anybody who comes along and reads your code. – DaveHowes May 6 '11 at 19:06
1  
So many duplicate answers... – Steve Kuo May 6 '11 at 20:14

6 Answers

up vote 13 down vote accepted

You are looking for Java generics

List<MyClass> list = new ArrayList<MyClass>();

Here's a tutorial http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf

share|improve this answer
1  
That link to a tutorial PDF from Sun is broken. This series of web pages from Oracle should be helpful: docs.oracle.com/javase/tutorial/java/generics/index.html – L S Feb 13 at 18:57

You're very close. Use same type on both sides, and include ().

ArrayList<Class> myArray = new ArrayList<Class>();
share|improve this answer

If you just want a list:

ArrayList<Class> myList = new ArrayList<Class>();

If you want an arraylist of a certain length (in this case size 10):

List<Class> myList = new ArrayList<Class>(10);

If you want to program against the interfaces (better for abstractions reasons):

List<Class> myList = new ArrayList<Class>();

Programming against interfaces is considered better because it's more abstract. You can change your Arraylist with a different list implementation (like a LinkedList) and the rest of your application doesn't need any changes.

share|improve this answer

Fixed the code for you:

ArrayList<Class> myArray= new ArrayList<Class>();
share|improve this answer

Do this: List<Class> myArray= new ArrayList<Class>();

share|improve this answer

Material please go through this Link And also try this

 ArrayList<Class> myArray= new ArrayList<Class>();
share|improve this answer
1  
Never use this! It is extremely bad practice to use concrete class at the left side of assignment when interface is available. – AlexR Jun 15 '11 at 6:58
Not sure what's wrong, this looks like all the other answers. They must have edited? – Noumenon May 4 at 12:37

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.