Assuming that I have a class named Class,
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>;
You are looking for Java generics
List<MyClass> list = new ArrayList<MyClass>();
Here's a tutorial http://docs.oracle.com/javase/tutorial/java/generics/index.html
2.1m questions
2.1m answers
60 comments
57.0k users